this is used in tests (#1380)

* signing prefix added

* Minor improvement

* Tests changed

* Successfully tested

* Minor improvements

* Minor improvements

* Revert "Dangling commas are now required. (#1359)"

This reverts commit a6889776f4.

* updates

* fixes #1200

* suggested change
This commit is contained in:
Aniket
2018-10-04 18:27:37 +05:30
committed by Nicolás Venturo
parent fd4de77651
commit b41b125c15
4 changed files with 21 additions and 30 deletions

View File

@ -7,25 +7,23 @@ require('chai')
const ERC20DetailedMock = artifacts.require('ERC20DetailedMock');
contract('ERC20Detailed', function () {
let detailedERC20 = null;
const _name = 'My Detailed ERC20';
const _symbol = 'MDT';
const _decimals = 18;
beforeEach(async function () {
detailedERC20 = await ERC20DetailedMock.new(_name, _symbol, _decimals);
this.detailedERC20 = await ERC20DetailedMock.new(_name, _symbol, _decimals);
});
it('has a name', async function () {
(await detailedERC20.name()).should.be.equal(_name);
(await this.detailedERC20.name()).should.be.equal(_name);
});
it('has a symbol', async function () {
(await detailedERC20.symbol()).should.be.equal(_symbol);
(await this.detailedERC20.symbol()).should.be.equal(_symbol);
});
it('has an amount of decimals', async function () {
(await detailedERC20.decimals()).should.be.bignumber.equal(_decimals);
(await this.detailedERC20.decimals()).should.be.bignumber.equal(_decimals);
});
});