Files
openzeppelin-contracts/test/token/ERC20/SafeERC20.test.js
Justus Perlwitz e6c15b34da Remove chai-as-promised (#1116)
* Test: Remove chai-as-promised calls

* Test/Helpers: expectThrow accepts optional message

* NPM: Remove chai-as-promised

* Contracts/DestructibleMock: Fix lint
2018-07-26 11:53:33 -03:00

38 lines
1.1 KiB
JavaScript

const { expectThrow } = require('../../helpers/expectThrow');
const { EVMRevert } = require('../../helpers/EVMRevert');
require('chai')
.should();
const SafeERC20Helper = artifacts.require('SafeERC20Helper');
contract('SafeERC20', function () {
beforeEach(async function () {
this.helper = await SafeERC20Helper.new();
});
it('should throw on failed transfer', async function () {
await expectThrow(this.helper.doFailingTransfer(), EVMRevert);
});
it('should throw on failed transferFrom', async function () {
await expectThrow(this.helper.doFailingTransferFrom(), EVMRevert);
});
it('should throw on failed approve', async function () {
await expectThrow(this.helper.doFailingApprove(), EVMRevert);
});
it('should not throw on succeeding transfer', async function () {
await this.helper.doSucceedingTransfer();
});
it('should not throw on succeeding transferFrom', async function () {
await this.helper.doSucceedingTransferFrom();
});
it('should not throw on succeeding approve', async function () {
await this.helper.doSucceedingApprove();
});
});