Skip to content

Commit

Permalink
test: add CLI query tests
Browse files Browse the repository at this point in the history
Merge pull request #146 from hallazzang/120-cli-query-tests
  • Loading branch information
hallazzang authored Oct 5, 2021
2 parents 783b942 + bb5cef2 commit 4ef97db
Show file tree
Hide file tree
Showing 6 changed files with 581 additions and 71 deletions.
2 changes: 1 addition & 1 deletion proto/tendermint/farming/v1beta1/proposal.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

package tendermint.farming.v1beta1;
package cosmos.farming.v1beta1;

import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";
Expand Down
17 changes: 17 additions & 0 deletions x/farming/client/testutil/cli_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// +build norace

package testutil

import (
"testing"

"github.com/stretchr/testify/suite"
)

func TestIntegrationTestSuite(t *testing.T) {
suite.Run(t, new(IntegrationTestSuite))
}

func TestQueryCmdTestSuite(t *testing.T) {
suite.Run(t, new(QueryCmdTestSuite))
}
Loading

0 comments on commit 4ef97db

Please sign in to comment.