Actual Gaia app

This commit is contained in:
Christopher Goes 2018-07-12 22:01:43 +02:00
parent 601251d9b8
commit bb217b91a4
1 changed files with 11 additions and 1 deletions

View File

@ -4,8 +4,18 @@ import (
"testing"
"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) {
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())
}