mirror of openzeppelin-contracts
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.
 
 
 
 
 
openzeppelin-contracts/test/token/ERC20/ERC20Detailed.test.js

29 lines
791 B

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