2014-05-23 20:53:50 +00:00
|
|
|
var Filer = require('../..');
|
2014-05-23 21:01:57 +00:00
|
|
|
var expect = require('chai').expect;
|
2014-01-14 15:56:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
describe("Filer", function() {
|
|
|
|
it("is defined", function() {
|
|
|
|
expect(typeof Filer).not.to.equal(undefined);
|
2014-01-14 15:56:36 +00:00
|
|
|
});
|
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it("has FileSystem constructor", function() {
|
|
|
|
expect(typeof Filer.FileSystem).to.equal('function');
|
|
|
|
});
|
2014-10-17 16:28:03 +00:00
|
|
|
|
|
|
|
it("has Shell constructor", function() {
|
|
|
|
expect(typeof Filer.Shell).to.equal('function');
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|