0g-chain/x/committee/client/cli/cli_test.go

39 lines
919 B
Go
Raw Normal View History

2020-04-24 22:36:08 +00:00
package cli_test
import (
"testing"
"github.com/stretchr/testify/suite"
2020-04-30 14:23:41 +00:00
"github.com/cosmos/cosmos-sdk/codec"
2020-04-24 22:36:08 +00:00
"github.com/kava-labs/kava/app"
"github.com/kava-labs/kava/x/committee/client/cli"
)
type CLITestSuite struct {
suite.Suite
cdc codec.Codec
2020-04-24 22:36:08 +00:00
}
func (suite *CLITestSuite) SetupTest() {
2020-04-27 12:57:47 +00:00
tApp := app.NewTestApp()
suite.cdc = tApp.AppCodec()
2020-04-24 22:36:08 +00:00
}
func (suite *CLITestSuite) TestExampleCommitteeChangeProposal_NotPanics() {
2020-04-24 22:36:08 +00:00
suite.NotPanics(func() { cli.MustGetExampleCommitteeChangeProposal(suite.cdc) })
}
func (suite *CLITestSuite) TestExampleCommitteeDeleteProposal_NotPanics() {
2020-04-24 22:36:08 +00:00
suite.NotPanics(func() { cli.MustGetExampleCommitteeDeleteProposal(suite.cdc) })
}
func (suite *CLITestSuite) TestExampleParameterChangeProposal_NotPanics() {
2020-04-24 22:36:08 +00:00
suite.NotPanics(func() { cli.MustGetExampleParameterChangeProposal(suite.cdc) })
}
func TestCLITestSuite(t *testing.T) {
suite.Run(t, new(CLITestSuite))
}