test(remove-extension) test -> client

This commit is contained in:
coderaiser 2019-01-14 12:15:47 +02:00
parent 74d56f795d
commit 02f8d75273

View file

@ -1,31 +0,0 @@
'use strict';
const test = require('supertape');
const dir = '../../../../client/modules/operation';
const removeExtension = require(`${dir}/remove-extension`);
test('cloudcmd: client: modules: operation: removeExtension: .tar.gz', (t) => {
const name = 'hello';
const fullName = `${name}.tar.gz`;
t.equal(removeExtension(fullName), name, 'should remove .tar.gz');
t.end();
});
test('cloudcmd: client: modules: operation: removeExtension: .tar.bz2', (t) => {
const name = 'hello';
const fullName = `${name}.tar.bz2`;
t.equal(removeExtension(fullName), name, 'should remove .tar.bz2');
t.end();
});
test('cloudcmd: client: modules: operation: removeExtension: .bz2', (t) => {
const name = 'hello';
const fullName = `${name}.bz2`;
t.equal(removeExtension(fullName), name, 'should remove .bz2');
t.end();
});