Files
gitbook/test/paths.js
T
2016-02-18 12:15:53 +01:00

17 lines
664 B
JavaScript

var pathUtils = require('../lib/utils/path');
describe('Paths', function() {
describe('setExtension', function() {
it('should correctly change extension of filename', function() {
pathUtils.setExtension('test.md', '.html').should.be.equal('test.html');
pathUtils.setExtension('test.md', '.json').should.be.equal('test.json');
});
it('should correctly change extension of path', function() {
pathUtils.setExtension('hello/test.md', '.html').should.be.equal('hello/test.html');
pathUtils.setExtension('hello/test.md', '.json').should.be.equal('hello/test.json');
});
});
});