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
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *CLITestSuite) SetupTest() {
|
2020-04-27 12:57:47 +00:00
|
|
|
tApp := app.NewTestApp()
|
|
|
|
suite.cdc = tApp.Codec()
|
2020-04-24 22:36:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *CLITestSuite) TestExampleCommitteeChangeProposal() {
|
|
|
|
suite.NotPanics(func() { cli.MustGetExampleCommitteeChangeProposal(suite.cdc) })
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *CLITestSuite) TestExampleCommitteeDeleteProposal() {
|
|
|
|
suite.NotPanics(func() { cli.MustGetExampleCommitteeDeleteProposal(suite.cdc) })
|
|
|
|
}
|
|
|
|
func (suite *CLITestSuite) TestExampleParameterChangeProposal() {
|
|
|
|
suite.NotPanics(func() { cli.MustGetExampleParameterChangeProposal(suite.cdc) })
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCLITestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(CLITestSuite))
|
|
|
|
}
|