2014-01-14 15:56:36 +00:00
|
|
|
define(["Filer"], function(Filer) {
|
|
|
|
describe("Filer.FileSystem.adapters", function() {
|
2013-12-01 21:41:04 +00:00
|
|
|
it("is defined", function() {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(Filer.FileSystem.adapters).to.exist;
|
2013-12-01 21:41:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("has a default Encryption constructor", function() {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(Filer.FileSystem.adapters.Encryption).to.be.a('function');
|
2013-12-01 21:41:04 +00:00
|
|
|
});
|
2013-12-03 20:14:20 +00:00
|
|
|
|
|
|
|
it("has a default Compression constructor", function() {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(Filer.FileSystem.adapters.Compression).to.be.a('function');
|
2013-12-03 20:14:20 +00:00
|
|
|
});
|
2013-12-01 21:41:04 +00:00
|
|
|
});
|
|
|
|
});
|