refactor(group): CLI tests using Tendermint Mock (#13067)

This commit is contained in:
likhita-809 2022-09-05 20:01:30 +05:30 committed by GitHub
parent 8579bdd17e
commit 2efee04e4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1842 additions and 5 deletions

View File

@ -1,14 +1,13 @@
//go:build e2e
// +build e2e
package testutil
package group
import (
"testing"
"github.com/cosmos/cosmos-sdk/simapp"
"github.com/cosmos/cosmos-sdk/testutil/network"
clienttestutil "github.com/cosmos/cosmos-sdk/x/group/client/testutil"
"github.com/stretchr/testify/suite"
)
@ -16,5 +15,5 @@ import (
func TestIntegrationTestSuite(t *testing.T) {
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
cfg.NumValidators = 2
suite.Run(t, clienttestutil.NewIntegrationTestSuite(cfg))
suite.Run(t, NewIntegrationTestSuite(cfg))
}

View File

@ -1,4 +1,4 @@
package testutil
package group
import (
"fmt"

View File

@ -1,4 +1,4 @@
package testutil
package group
import (
"encoding/base64"

File diff suppressed because it is too large Load Diff