Page MenuHomeSealhub

datastore.test.js
No OneTemporary

datastore.test.js

var Sealious = require("sealious");
module.exports = {
test_init: function() {
},
test_start: function() {
describe("Sealious.Datastore", function() {
it("returns a developer error \"not implemented\"", function(done) {
var func = Sealious.Dispatcher.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:55 (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
984003
Default Alt Text
datastore.test.js (532 B)

Event Timeline