Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 7ce411a

Browse files
dapp init DssLibExec
0 parents  commit 7ce411a

File tree

5 files changed

+31
-0
lines changed

5 files changed

+31
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.sol linguist-language=Solidity

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/out

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
all :; dapp build
2+
clean :; dapp clean
3+
test :; dapp test
4+
deploy :; dapp create DssLibExec

src/DssLibExec.sol

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pragma solidity ^0.6.7;
2+
3+
contract DssLibExec {
4+
}

src/DssLibExec.t.sol

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pragma solidity ^0.6.7;
2+
3+
import "ds-test/test.sol";
4+
5+
import "./DssLibExec.sol";
6+
7+
contract DssLibExecTest is DSTest {
8+
DssLibExec exec;
9+
10+
function setUp() public {
11+
exec = new DssLibExec();
12+
}
13+
14+
function testFail_basic_sanity() public {
15+
assertTrue(false);
16+
}
17+
18+
function test_basic_sanity() public {
19+
assertTrue(true);
20+
}
21+
}

0 commit comments

Comments
 (0)