mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-07 22:56:37 +00:00

// See https://github.com/rddl-network/issues/issues/33 Signed-off-by: Julian Strobl <jmastr@mailbox.org>
14 lines
358 B
Go
14 lines
358 B
Go
package app
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
// TestAccountAddressPrefix makes sure that the account address prefix has a certain value.
|
|
func TestAccountAddressPrefix(t *testing.T) {
|
|
accountAddressPrefix := "plmnt"
|
|
assert.Equal(t, AccountAddressPrefix, accountAddressPrefix, "The account address prefix should be 'plmnt'.")
|
|
}
|