diff options
author | Felix Lange <fjl@twurst.com> | 2015-09-03 04:02:44 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-09-03 04:02:44 +0800 |
commit | b2c17a5a63da692accb1d047e0944d4d79546db5 (patch) | |
tree | 5d4aed68ab4a38c4cd49120ea3669262a9655918 /tests/block_test.go | |
parent | e9b031b88b0a8a567a2e9e02da96cdadd3de1bcb (diff) | |
parent | fe8093b71f68614af8f542c7b829f56a28db7914 (diff) | |
download | go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar.gz go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar.bz2 go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar.lz go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar.xz go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.tar.zst go-tangerine-b2c17a5a63da692accb1d047e0944d4d79546db5.zip |
Merge pull request #1726 from Gustav-Simonsson/update_tests
Add TestBcForkUncle tests & update JSON files
Diffstat (limited to 'tests/block_test.go')
-rw-r--r-- | tests/block_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/block_test.go b/tests/block_test.go index b0db5fe56..09fc8ebc9 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -42,6 +42,13 @@ func TestBcUncleTests(t *testing.T) { } } +func TestBcForkUncleTests(t *testing.T) { + err := RunBlockTest(filepath.Join(blockTestDir, "bcForkUncle.json"), BlockSkipTests) + if err != nil { + t.Fatal(err) + } +} + func TestBcInvalidHeaderTests(t *testing.T) { err := RunBlockTest(filepath.Join(blockTestDir, "bcInvalidHeaderTest.json"), BlockSkipTests) if err != nil { |