pgdata und yaml

This commit is contained in:
ChK
2026-02-15 23:14:19 +01:00
parent 58b490b4f1
commit 68c2db11d0
1086 changed files with 121294 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
'use strict';
const { expect } = require('chai');
const conversion = require('../../src/convert-expression/asterisk-to-range-conversion');
describe('asterisk-to-range-conversion.js', () => {
it('shuld convert * to ranges', () => {
const expressions = '* * * * * *'.split(' ');
const expression = conversion(expressions).join(' ');
expect(expression).to.equal('0-59 0-59 0-23 1-31 1-12 0-6');
});
});