add tests for events public funcs

Refs #693
This commit is contained in:
Anton Kaliaev 2018-07-11 13:39:05 +04:00
parent b271c40783
commit 80399e60fb
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 23 additions and 0 deletions

23
types/events_test.go Normal file
View File

@ -0,0 +1,23 @@
package types
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
func TestQueryTxFor(t *testing.T) {
tx := Tx("foo")
assert.Equal(t,
fmt.Sprintf("tm.event='Tx' AND tx.hash='%X'", tx.Hash()),
EventQueryTxFor(tx).String(),
)
}
func TestQueryForEvent(t *testing.T) {
assert.Equal(t,
"tm.event='NewBlock'",
QueryForEvent(EventNewBlock).String(),
)
}