diff --git a/contracts/fixtures/Fixture.sol b/contracts/fixtures/Fixture.sol new file mode 100644 index 0000000..b17a8b0 --- /dev/null +++ b/contracts/fixtures/Fixture.sol @@ -0,0 +1,17 @@ +// SPDX-License-Identifier: Apache-2.0 + +/** + * Authors: Moonstream Engineering (engineering@moonstream.to) + * GitHub: https://github.com/bugout-dev/dao + * + * Fixture contract to check in test enviroment that connected contract is indeed test fixture + */ + +pragma solidity ^0.8.9; + +contract TestFixture { + function isFixture () public pure returns (bool) + { + return true; + } +}