mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-13 15:45:01 +00:00
18 lines
295 B
Go
18 lines
295 B
Go
|
package payload
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/CityOfZion/neo-go/pkg/wire/command"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestNewVerack(t *testing.T) {
|
||
|
|
||
|
verackMessage, err := NewVerackMessage()
|
||
|
|
||
|
assert.Equal(t, nil, err)
|
||
|
assert.Equal(t, command.Verack, verackMessage.Command())
|
||
|
}
|