fix: semster boosting

This commit is contained in:
Rainer Killinger
2023-03-07 13:20:57 +01:00
parent 3e490aeeb9
commit 515a6eeea5
2 changed files with 32 additions and 24 deletions

View File

@@ -13,21 +13,21 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import {inRangeInclusive} from '../config/default';
import {yearSlice} from '../config/default';
import {expect} from 'chai';
describe('Common', function () {
describe('inRangeInclusive', function () {
it('should provide true if the given number is in the range', function () {
expect(inRangeInclusive(1, [1, 3])).to.be.true;
expect(inRangeInclusive(2, [1, 3])).to.be.true;
expect(inRangeInclusive(1.1, [1, 3])).to.be.true;
expect(inRangeInclusive(3, [1, 3])).to.be.true;
describe('yearSlice', function () {
it('should provide correct ascending month number ranges', function () {
expect(yearSlice(1, 12)).to.eql([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]);
});
it('should provide false if the given number is not in the range', function () {
expect(inRangeInclusive(3.1, [1, 3])).to.be.false;
expect(inRangeInclusive(0, [1, 3])).to.be.false;
it('should provide correct month number ranges for year rollovers', function () {
expect(yearSlice(12, 1)).to.eql([12, 1]);
});
it('should provide correct month number ranges for a whole year', function () {
expect(yearSlice(12, 12)).to.eql([12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]);
});
});
});