Files
openzeppelin-contracts/test/token/ERC20/ERC20Detailed.test.js
Leo Arias 7bb87237f3 Improve encapsulation on ERCs (#1270)
* Improve encapsulation on ERC165

* Improve encapsulation on ERC20

* Improve encapsulation on ERC721

* Add tests, use standard getters

* fix tests

* Fix lint

* move interface ids to implementation contracts

* Do not prefix getters
2018-09-05 17:37:29 -03:00

32 lines
800 B
JavaScript

const BigNumber = web3.BigNumber;
require('chai')
.use(require('chai-bignumber')(BigNumber))
.should();
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);
});
it('has a name', async function () {
(await detailedERC20.name()).should.be.equal(_name);
});
it('has a symbol', async function () {
(await detailedERC20.symbol()).should.be.equal(_symbol);
});
it('has an amount of decimals', async function () {
(await detailedERC20.decimals()).should.be.bignumber.equal(_decimals);
});
});