Move ERC20 tests to ERC20 custom folder (#772)
This commit is contained in:
committed by
GitHub
parent
c9936e231d
commit
9f52e94339
@ -1,4 +1,4 @@
|
||||
import assertRevert from '../helpers/assertRevert';
|
||||
import assertRevert from '../../helpers/assertRevert';
|
||||
const BasicToken = artifacts.require('BasicTokenMock');
|
||||
|
||||
contract('StandardToken', function ([_, owner, recipient, anotherAccount]) {
|
||||
@ -1,4 +1,4 @@
|
||||
import assertRevert from '../helpers/assertRevert';
|
||||
import assertRevert from '../../helpers/assertRevert';
|
||||
const BurnableTokenMock = artifacts.require('BurnableTokenMock');
|
||||
|
||||
contract('BurnableToken', function ([owner]) {
|
||||
@ -1,6 +1,6 @@
|
||||
|
||||
import expectThrow from '../helpers/expectThrow';
|
||||
import ether from '../helpers/ether';
|
||||
import expectThrow from '../../helpers/expectThrow';
|
||||
import ether from '../../helpers/ether';
|
||||
|
||||
var CappedToken = artifacts.require('CappedToken');
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import assertRevert from '../helpers/assertRevert';
|
||||
import assertRevert from '../../helpers/assertRevert';
|
||||
const MintableToken = artifacts.require('MintableToken');
|
||||
|
||||
contract('Mintable', function ([owner, anotherAccount]) {
|
||||
@ -1,4 +1,4 @@
|
||||
import assertRevert from '../helpers/assertRevert';
|
||||
import assertRevert from '../../helpers/assertRevert';
|
||||
const PausableToken = artifacts.require('PausableTokenMock');
|
||||
|
||||
contract('PausableToken', function ([_, owner, recipient, anotherAccount]) {
|
||||
@ -1,4 +1,4 @@
|
||||
import assertRevert from '../helpers/assertRevert';
|
||||
import assertRevert from '../../helpers/assertRevert';
|
||||
const StandardTokenMock = artifacts.require('StandardTokenMock');
|
||||
|
||||
contract('StandardToken', function ([_, owner, recipient, anotherAccount]) {
|
||||
@ -1,5 +1,5 @@
|
||||
import latestTime from '../helpers/latestTime';
|
||||
import { increaseTimeTo, duration } from '../helpers/increaseTime';
|
||||
import latestTime from '../../helpers/latestTime';
|
||||
import { increaseTimeTo, duration } from '../../helpers/increaseTime';
|
||||
|
||||
const BigNumber = web3.BigNumber;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import EVMRevert from '../helpers/EVMRevert';
|
||||
import latestTime from '../helpers/latestTime';
|
||||
import { increaseTimeTo, duration } from '../helpers/increaseTime';
|
||||
import EVMRevert from '../../helpers/EVMRevert';
|
||||
import latestTime from '../../helpers/latestTime';
|
||||
import { increaseTimeTo, duration } from '../../helpers/increaseTime';
|
||||
|
||||
const BigNumber = web3.BigNumber;
|
||||
|
||||
Reference in New Issue
Block a user