Skip to content

Commit

Permalink
dapp init GovernanceStaking
Browse files Browse the repository at this point in the history
  • Loading branch information
crisgarner committed Aug 9, 2021
0 parents commit 4bb4f60
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sol linguist-language=Solidity
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/out
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
all :; dapp build
clean :; dapp clean
test :; dapp test
deploy :; dapp create GovernanceStaking
4 changes: 4 additions & 0 deletions src/GovernanceStaking.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pragma solidity ^0.8.6;

contract GovernanceStaking {
}
21 changes: 21 additions & 0 deletions src/GovernanceStaking.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pragma solidity ^0.8.6;

import "ds-test/test.sol";

import "./GovernanceStaking.sol";

contract GovernanceStakingTest is DSTest {
GovernanceStaking staking;

function setUp() public {
staking = new GovernanceStaking();
}

function testFail_basic_sanity() public {
assertTrue(false);
}

function test_basic_sanity() public {
assertTrue(true);
}
}

0 comments on commit 4bb4f60

Please sign in to comment.