2014-01-14 15:56:36 +00:00
|
|
|
define(["Filer"], function(Filer) {
|
|
|
|
|
|
|
|
describe("Filer", function() {
|
|
|
|
it("is defined", function() {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(typeof Filer).not.to.equal(undefined);
|
2014-01-14 15:56:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("has FileSystem constructor", function() {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(typeof Filer.FileSystem).to.equal('function');
|
2014-01-14 15:56:36 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|