You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
400 B
18 lines
400 B
8 years ago
|
/* eslint-env node, mocha */
|
||
|
/* global artifacts, contract, assert */
|
||
8 years ago
|
|
||
|
const OnlyCall = artifacts.require('./OnlyCall.sol');
|
||
|
|
||
8 years ago
|
contract('OnlyCall', accounts => {
|
||
|
it('should return val + 2', done => {
|
||
|
OnlyCall.deployed().then(instance => {
|
||
|
instance.addTwo.call(5, {
|
||
|
from: accounts[0],
|
||
|
}).then(val => {
|
||
8 years ago
|
assert.equal(val, 7);
|
||
|
done();
|
||
|
});
|
||
|
});
|
||
8 years ago
|
});
|
||
8 years ago
|
});
|