Actual Gaia app
This commit is contained in:
parent
601251d9b8
commit
bb217b91a4
|
@ -4,8 +4,18 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
dbm "github.com/tendermint/tendermint/libs/db"
|
||||||
|
"github.com/tendermint/tendermint/libs/log"
|
||||||
|
|
||||||
|
gaia "github.com/cosmos/cosmos-sdk/cmd/gaia/app"
|
||||||
|
// stakesim "github.com/cosmos/cosmos-sdk/x/stake/simulation"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestFullGaiaSimulation(t *testing.T) {
|
func TestFullGaiaSimulation(t *testing.T) {
|
||||||
require.True(t, true, "should not happen")
|
// Setup Gaia application
|
||||||
|
logger := log.NewNopLogger()
|
||||||
|
db := dbm.NewMemDB()
|
||||||
|
app := gaia.NewGaiaApp(logger, db)
|
||||||
|
require.Equal(t, "GaiaApp", app.Name())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue