14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
|
define(["Filer", "util"], function(Filer, util) {
|
||
|
|
||
|
describe('FileSystemShell.mv'), function() {
|
||
|
beforeEach(util.setup);
|
||
|
afterEach(util.cleanup);
|
||
|
|
||
|
it('should be a function', function() {
|
||
|
var shell = util.shell();
|
||
|
expect(shell.mv).to.be.a('function');
|
||
|
});
|
||
|
|
||
|
|
||
|
});
|
||
|
});
|