safe-react/test/simplestorage.js

18 lines
524 B
JavaScript

var SimpleStorage = artifacts.require("./SimpleStorage.sol");
contract('SimpleStorage', function(accounts) {
it("...should store the value 89.", function() {
return SimpleStorage.deployed().then(function(instance) {
simpleStorageInstance = instance;
return simpleStorageInstance.set(89, {from: accounts[0]});
}).then(function() {
return simpleStorageInstance.get.call();
}).then(function(storedData) {
assert.equal(storedData, 89, "The value 89 was not stored.");
});
});
});