Move tmsp_test to tests/tmsp

This commit is contained in:
Jae Kwon 2017-01-15 15:16:18 -08:00
parent 16a6680e24
commit c0e153d103
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
package app
package tmsp_test
import (
"testing"
"github.com/tendermint/basecoin/app"
"github.com/tendermint/basecoin/testutils"
"github.com/tendermint/basecoin/types"
cmn "github.com/tendermint/go-common"
@ -13,7 +14,7 @@ import (
func TestSendTx(t *testing.T) {
eyesCli := eyescli.NewLocalClient()
chainID := "test_chain_id"
bcApp := NewBasecoin(eyesCli)
bcApp := app.NewBasecoin(eyesCli)
bcApp.SetOption("base/chainID", chainID)
t.Log(bcApp.Info())
@ -64,7 +65,7 @@ func TestSendTx(t *testing.T) {
func TestSequence(t *testing.T) {
eyesCli := eyescli.NewLocalClient()
chainID := "test_chain_id"
bcApp := NewBasecoin(eyesCli)
bcApp := app.NewBasecoin(eyesCli)
bcApp.SetOption("base/chainID", chainID)
t.Log(bcApp.Info())