forked from Arachnid/solidity-stringutils
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
MANIFEST-000045 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
2018/03/28-01:47:46.068690 7000108be000 Recovering log #43 | ||
2018/03/28-01:47:46.069790 7000108be000 Level-0 table #46: started | ||
2018/03/28-01:47:46.070563 7000108be000 Level-0 table #46: 326 bytes OK | ||
2018/03/28-01:47:46.071929 7000108be000 Delete type=3 #41 | ||
2018/03/28-01:47:46.072151 7000108be000 Delete type=0 #43 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
2018/03/27-23:46:03.906333 700004c31000 Recovering log #40 | ||
2018/03/27-23:46:03.907095 700004c31000 Level-0 table #42: started | ||
2018/03/27-23:46:03.908196 700004c31000 Level-0 table #42: 326 bytes OK | ||
2018/03/27-23:46:03.909382 700004c31000 Delete type=3 #39 | ||
2018/03/27-23:46:03.909545 700004c31000 Delete type=0 #40 | ||
2018/03/27-23:46:03.909769 700004cb4000 Compacting 4@0 + 1@1 files | ||
2018/03/27-23:46:03.910326 700004cb4000 Generated table #44@0: 7 keys, 1057 bytes | ||
2018/03/27-23:46:03.910347 700004cb4000 Compacted 4@0 + 1@1 files => 1057 bytes | ||
2018/03/27-23:46:03.910532 700004cb4000 compacted to: files[ 0 1 0 0 0 0 0 ] | ||
2018/03/27-23:46:03.910654 700004cb4000 Delete type=2 #29 | ||
2018/03/27-23:46:03.910850 700004cb4000 Delete type=2 #34 | ||
2018/03/27-23:46:03.911010 700004cb4000 Delete type=2 #37 | ||
2018/03/27-23:46:03.911151 700004cb4000 Delete type=2 #31 | ||
2018/03/27-23:46:03.911293 700004cb4000 Delete type=2 #42 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/chain_db//out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 SolidityStringutils |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pragma solidity ^0.4.21; | ||
|
||
contract SolidityStringutils { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
pragma solidity ^0.4.21; | ||
|
||
import "ds-test/test.sol"; | ||
|
||
import "./SolidityStringutils.sol"; | ||
|
||
contract SolidityStringutilsTest is DSTest { | ||
SolidityStringutils stringutils; | ||
|
||
function setUp() public { | ||
stringutils = new SolidityStringutils(); | ||
} | ||
|
||
function testFail_basic_sanity() public { | ||
assertTrue(false); | ||
} | ||
|
||
function test_basic_sanity() public { | ||
assertTrue(true); | ||
} | ||
} |