From 97e2897f2d40fbb1f7d65571142a814b467ea187 Mon Sep 17 00:00:00 2001 From: Haythem Sellami Date: Mon, 29 Jul 2019 15:03:51 +0100 Subject: [PATCH] fix tests --- apps/token/contracts/test/Spoof.sol | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/token/contracts/test/Spoof.sol diff --git a/apps/token/contracts/test/Spoof.sol b/apps/token/contracts/test/Spoof.sol new file mode 100644 index 0000000..34fb889 --- /dev/null +++ b/apps/token/contracts/test/Spoof.sol @@ -0,0 +1,16 @@ +pragma solidity ^0.4.24; + +import "@aragon/os/contracts/acl/ACL.sol"; +import "@aragon/os/contracts/kernel/Kernel.sol"; +import "@aragon/os/contracts/factory/DAOFactory.sol"; + +// You might think this file is a bit odd, but let me explain. +// We only use for now those imported contracts in our tests, which +// means Truffle will not compile them for us, because they are from +// an external dependency. + + +// solium-disable-next-line no-empty-blocks +contract Spoof { + // ... +}