feat: move mock solidity contracts to mocks/ folder

This commit is contained in:
Matt Condon
2017-11-24 14:41:49 +02:00
parent 58abd66969
commit 227a335399
40 changed files with 21 additions and 21 deletions

View File

@ -2,8 +2,8 @@
import expectThrow from './helpers/expectThrow';
import toPromise from './helpers/toPromise';
const HasNoEther = artifacts.require('../contracts/lifecycle/HasNoEther.sol');
const HasNoEtherTest = artifacts.require('../helpers/HasNoEtherTest.sol');
const ForceEther = artifacts.require('../helpers/ForceEther.sol');
const HasNoEtherTest = artifacts.require('../mocks/HasNoEtherTest.sol');
const ForceEther = artifacts.require('../mocks/ForceEther.sol');
contract('HasNoEther', function (accounts) {
const amount = web3.toWei('1', 'ether');