Fixture contract to distinct fixture contracts

pull/37/head
Tim Pechersky 2022-02-15 15:05:25 +00:00
rodzic 61a9da8383
commit e82c60bae1
1 zmienionych plików z 17 dodań i 0 usunięć

Wyświetl plik

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