38 lines
823 B
JavaScript
38 lines
823 B
JavaScript
var assert = require('assert');
|
|
var Embark = require('embark');
|
|
var EmbarkSpec = Embark.initTests();
|
|
var web3 = EmbarkSpec.web3;
|
|
|
|
describe("AnotherStorage", function() {
|
|
before(function(done) {
|
|
var contractsConfig = {
|
|
"SimpleStorage": {
|
|
args: [100]
|
|
},
|
|
"AnotherStorage": {
|
|
args: ["$SimpleStorage"]
|
|
},
|
|
"Token": {
|
|
deploy: false,
|
|
args: [1000]
|
|
},
|
|
"MyToken": {
|
|
instanceOf: "Token"
|
|
},
|
|
"MyToken2": {
|
|
instanceOf: "Token",
|
|
args: [2000]
|
|
}
|
|
};
|
|
EmbarkSpec.deployAll(contractsConfig, done);
|
|
});
|
|
|
|
it("set SimpleStorage address", function(done) {
|
|
AnotherStorage.simpleStorageAddress(function(err, result) {
|
|
assert.equal(result.toString(), SimpleStorage.address);
|
|
done();
|
|
});
|
|
});
|
|
|
|
});
|