mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-09 13:26:10 +00:00
ee77ac7f7f
Ref: #817
18 lines
285 B
Solidity
18 lines
285 B
Solidity
pragma solidity ^0.4.7;
|
|
import "./../ownable.sol";
|
|
|
|
contract OwnableTests {
|
|
Ownable own;
|
|
|
|
function beforeAll() {
|
|
own = new Ownable();
|
|
}
|
|
|
|
function beforeEach() {
|
|
}
|
|
|
|
function shouldnotbezeroAddress() public {
|
|
Assert.equal(true, true, "owner is uninitialized");
|
|
}
|
|
}
|