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.
32 lines
800 B
32 lines
800 B
7 years ago
|
const BigNumber = web3.BigNumber;
|
||
|
|
||
|
require('chai')
|
||
|
.use(require('chai-bignumber')(BigNumber))
|
||
|
.should();
|
||
|
|
||
7 years ago
|
const ERC20DetailedMock = artifacts.require('ERC20DetailedMock');
|
||
7 years ago
|
|
||
7 years ago
|
contract('ERC20Detailed', function () {
|
||
7 years ago
|
let detailedERC20 = null;
|
||
|
|
||
7 years ago
|
const _name = 'My Detailed ERC20';
|
||
|
const _symbol = 'MDT';
|
||
7 years ago
|
const _decimals = 18;
|
||
|
|
||
7 years ago
|
beforeEach(async function () {
|
||
7 years ago
|
detailedERC20 = await ERC20DetailedMock.new(_name, _symbol, _decimals);
|
||
7 years ago
|
});
|
||
|
|
||
|
it('has a name', async function () {
|
||
7 years ago
|
(await detailedERC20.name()).should.be.equal(_name);
|
||
7 years ago
|
});
|
||
|
|
||
|
it('has a symbol', async function () {
|
||
7 years ago
|
(await detailedERC20.symbol()).should.be.equal(_symbol);
|
||
7 years ago
|
});
|
||
|
|
||
|
it('has an amount of decimals', async function () {
|
||
7 years ago
|
(await detailedERC20.decimals()).should.be.bignumber.equal(_decimals);
|
||
7 years ago
|
});
|
||
|
});
|