Page MenuHomeSealhub

datastore.test.js
No OneTemporary

datastore.test.js

var Sealious = require("sealious");
module.exports = {
test_start: function(){
describe("Sealious.Datastore", function(){
it("returns a developer error \"not implemented\"", function(done){
var func = Sealious.Datastore.return_not_implemented("not implemented");
try {
func();
done("It didn't throw an error at all")
}
catch (e) {
if (e.type === "dev_error")
done();
else
done("It didn't throw a proper error");
}
})
})
}
}

File Metadata

Mime Type
text/plain
Expires
Sat, Oct 11, 07:15 (19 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
983955
Default Alt Text
datastore.test.js (488 B)

Event Timeline