Test blockHeightFromJsonInvalid

This commit is contained in:
Taylor Gerring 2015-03-27 00:13:03 +01:00
parent e0781c2548
commit c38630af23
1 changed files with 9 additions and 0 deletions

View File

@ -1680,3 +1680,12 @@ func TestSubmitWorkArgsDigestInt(t *testing.T) {
t.Error(str)
}
}
func TestBlockHeightFromJsonInvalid(t *testing.T) {
var num int64
var msg json.RawMessage = []byte(`}{`)
str := ExpectDecodeParamError(blockHeightFromJson(msg, &num))
if len(str) > 0 {
t.Error(str)
}
}