embark/demo/spec/contracts/simple_storage_spec.js

18 lines
421 B
JavaScript
Raw Normal View History

2015-06-15 10:26:38 +00:00
EmbarkSpec = require('embark-framework').Tests;
describe("SimpleStorage", function() {
beforeAll(function() {
SimpleStorage = EmbarkSpec.request("SimpleStorage", [150]);
});
it("should set constructor value", function() {
2015-06-20 12:36:40 +00:00
expect(SimpleStorage.storedData()).toEqual('150');
2015-06-15 10:26:38 +00:00
});
it("set storage value", function() {
SimpleStorage.set(100);
expect(SimpleStorage.get()).toEqual('100');
});
})