Skip to content

Commit 9e98647

Browse files
committed
tests: adding key tests
1 parent 9e39ea1 commit 9e98647

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package types_test
2+
3+
import (
4+
"fmt"
5+
"testing"
6+
7+
"github.com/stretchr/testify/require"
8+
9+
"github.com/cosmos/ibc-go/modules/apps/27-interchain-accounts/types"
10+
)
11+
12+
func TestKeyActiveChannel(t *testing.T) {
13+
key := types.KeyActiveChannel("owner")
14+
require.Equal(t, string(key), "activeChannel/owner")
15+
}
16+
17+
func TestGetIdentifier(t *testing.T) {
18+
identifier := types.GetIdentifier(types.PortID, "channel-0")
19+
require.Equal(t, identifier, fmt.Sprintf("%s/channel-0/", types.PortID))
20+
}

0 commit comments

Comments
 (0)