Move ERC20 tests to ERC20 custom folder (#772)

This commit is contained in:
Facundo Spagnuolo
2018-03-22 17:37:05 -03:00
committed by GitHub
parent c9936e231d
commit 9f52e94339
8 changed files with 12 additions and 12 deletions

View File

@ -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]) {

View File

@ -1,4 +1,4 @@
import assertRevert from '../helpers/assertRevert';
import assertRevert from '../../helpers/assertRevert';
const BurnableTokenMock = artifacts.require('BurnableTokenMock');
contract('BurnableToken', function ([owner]) {

View File

@ -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');

View File

@ -1,4 +1,4 @@
import assertRevert from '../helpers/assertRevert';
import assertRevert from '../../helpers/assertRevert';
const MintableToken = artifacts.require('MintableToken');
contract('Mintable', function ([owner, anotherAccount]) {

View File

@ -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]) {

View File

@ -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]) {

View File

@ -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;

View File

@ -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;