You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							25 lines
						
					
					
						
							982 B
						
					
					
				
			
		
		
	
	
							25 lines
						
					
					
						
							982 B
						
					
					
				'use strict';
 | 
						|
 | 
						|
const { expect } = require('chai');
 | 
						|
const conversion = require('../../src/convert-expression/range-conversion');
 | 
						|
 | 
						|
describe('range-conversion.js', () => {
 | 
						|
    it('shuld convert ranges to numbers', () => {
 | 
						|
        const expressions = '0-3 0-3 0-2 1-3 1-2 0-3'.split(' ');
 | 
						|
        const expression = conversion(expressions).join(' ');
 | 
						|
        expect(expression).to.equal('0,1,2,3 0,1,2,3 0,1,2 1,2,3 1,2 0,1,2,3');
 | 
						|
    });
 | 
						|
 | 
						|
    it('shuld convert ranges to numbers', () => {
 | 
						|
        const expressions = '0-3 0-3 8-10 1-3 1-2 0-3'.split(' ');
 | 
						|
        const expression = conversion(expressions).join(' ');
 | 
						|
        expect(expression).to.equal('0,1,2,3 0,1,2,3 8,9,10 1,2,3 1,2 0,1,2,3');
 | 
						|
    });
 | 
						|
 | 
						|
    it('should convert comma delimited ranges to numbers', () => {
 | 
						|
        var expressions = '0-2,10-23'.split(' ');
 | 
						|
        var expression = conversion(expressions).join(' ');
 | 
						|
        expect(expression).to.equal('0,1,2,10,11,12,13,14,15,16,17,18,19,20,21,22,23');
 | 
						|
    });
 | 
						|
});
 |