File tree 5 files changed +31
-0
lines changed
5 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ * .sol linguist-language =Solidity
Original file line number Diff line number Diff line change
1
+ /out
Original file line number Diff line number Diff line change
1
+ all :; dapp build
2
+ clean :; dapp clean
3
+ test :; dapp test
4
+ deploy :; dapp create Megapoker
Original file line number Diff line number Diff line change
1
+ pragma solidity ^ 0.5.12 ;
2
+
3
+ contract Megapoker {
4
+ }
Original file line number Diff line number Diff line change
1
+ pragma solidity ^ 0.5.12 ;
2
+
3
+ import "ds-test/test.sol " ;
4
+
5
+ import "./Megapoker.sol " ;
6
+
7
+ contract MegapokerTest is DSTest {
8
+ Megapoker megapoker;
9
+
10
+ function setUp () public {
11
+ megapoker = new Megapoker ();
12
+ }
13
+
14
+ function testFail_basic_sanity () public {
15
+ assertTrue (false );
16
+ }
17
+
18
+ function test_basic_sanity () public {
19
+ assertTrue (true );
20
+ }
21
+ }
You can’t perform that action at this time.
0 commit comments