All tests now use account names, and dont use accounts[0] (except ERC… (#1137)
* All tests now use account names, and dont use accounts[0] (except ERC721) * Added account names to some missing contracts.pull/1125/head
parent
f49721576f
commit
4544df47da
@ -1,29 +1,27 @@ |
||||
const DestructibleMock = artifacts.require('DestructibleMock'); |
||||
const { ethGetBalance } = require('../helpers/web3'); |
||||
|
||||
contract('Destructible', function (accounts) { |
||||
contract('Destructible', function ([_, owner, recipient]) { |
||||
beforeEach(async function () { |
||||
this.destructible = await DestructibleMock.new({ from: accounts[0] }); |
||||
this.destructible = await DestructibleMock.new({ from: owner }); |
||||
await web3.eth.sendTransaction({ |
||||
from: accounts[0], |
||||
from: owner, |
||||
to: this.destructible.address, |
||||
value: web3.toWei('10', 'ether'), |
||||
}); |
||||
|
||||
this.owner = await this.destructible.owner(); |
||||
}); |
||||
|
||||
it('should send balance to owner after destruction', async function () { |
||||
const initBalance = await ethGetBalance(this.owner); |
||||
await this.destructible.destroy({ from: this.owner }); |
||||
const newBalance = await ethGetBalance(this.owner); |
||||
const initBalance = await ethGetBalance(owner); |
||||
await this.destructible.destroy({ from: owner }); |
||||
const newBalance = await ethGetBalance(owner); |
||||
assert.isTrue(newBalance > initBalance); |
||||
}); |
||||
|
||||
it('should send balance to recepient after destruction', async function () { |
||||
const initBalance = await ethGetBalance(accounts[1]); |
||||
await this.destructible.destroyAndSend(accounts[1], { from: this.owner }); |
||||
const newBalance = await ethGetBalance(accounts[1]); |
||||
const initBalance = await ethGetBalance(recipient); |
||||
await this.destructible.destroyAndSend(recipient, { from: owner }); |
||||
const newBalance = await ethGetBalance(recipient); |
||||
assert.isTrue(newBalance.greaterThan(initBalance)); |
||||
}); |
||||
}); |
||||
|
@ -1,12 +1,12 @@ |
||||
const { shouldBehaveLikeBurnableToken } = require('./BurnableToken.behaviour'); |
||||
const BurnableTokenMock = artifacts.require('BurnableTokenMock'); |
||||
|
||||
contract('BurnableToken', function ([owner]) { |
||||
contract('BurnableToken', function ([_, owner]) { |
||||
const initialBalance = 1000; |
||||
|
||||
beforeEach(async function () { |
||||
this.token = await BurnableTokenMock.new(owner, initialBalance); |
||||
this.token = await BurnableTokenMock.new(owner, initialBalance, { from: owner }); |
||||
}); |
||||
|
||||
shouldBehaveLikeBurnableToken([owner], initialBalance); |
||||
shouldBehaveLikeBurnableToken(owner, initialBalance); |
||||
}); |
||||
|
@ -1,12 +1,10 @@ |
||||
const { shouldBehaveLikeMintableToken } = require('./MintableToken.behaviour'); |
||||
const MintableToken = artifacts.require('MintableToken'); |
||||
|
||||
contract('MintableToken', function ([owner, anotherAccount]) { |
||||
const minter = owner; |
||||
|
||||
contract('MintableToken', function ([_, owner, ...otherAccounts]) { |
||||
beforeEach(async function () { |
||||
this.token = await MintableToken.new({ from: owner }); |
||||
}); |
||||
|
||||
shouldBehaveLikeMintableToken([owner, anotherAccount, minter]); |
||||
shouldBehaveLikeMintableToken(owner, owner, otherAccounts); |
||||
}); |
||||
|
Loading…
Reference in new issue