From f5dd135564e6df70e093e60c5c705a227a01f69a Mon Sep 17 00:00:00 2001
From: Ethan Buchman <ethan@coinculture.info>
Date: Tue, 5 Apr 2016 16:16:28 -0400
Subject: [PATCH] tests requiring consensus engine are out of scope for now

---
 test/web_api/web_api_test.go | 16 +++++++++++-----
 txs/tx_test.go               |  2 +-
 2 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/test/web_api/web_api_test.go b/test/web_api/web_api_test.go
index c47bb8ce..3becfd0a 100644
--- a/test/web_api/web_api_test.go
+++ b/test/web_api/web_api_test.go
@@ -6,8 +6,6 @@ import (
 	"encoding/hex"
 	"fmt"
 	// edb "github.com/eris-ltd/erisdb/erisdb"
-	"github.com/gin-gonic/gin"
-	"github.com/stretchr/testify/suite"
 	"github.com/eris-ltd/eris-db/account"
 	edb "github.com/eris-ltd/eris-db/erisdb"
 	ess "github.com/eris-ltd/eris-db/erisdb/erisdbss"
@@ -15,6 +13,8 @@ import (
 	"github.com/eris-ltd/eris-db/rpc"
 	"github.com/eris-ltd/eris-db/server"
 	td "github.com/eris-ltd/eris-db/test/testdata/testdata"
+	"github.com/gin-gonic/gin"
+	"github.com/stretchr/testify/suite"
 	"io/ioutil"
 	"net/http"
 	"os"
@@ -68,7 +68,8 @@ func (this *WebApiSuite) TearDownSuite() {
 }
 
 // ********************************************* Consensus *********************************************
-
+// TODO
+/*
 func (this *WebApiSuite) Test_A0_ConsensusState() {
 	resp := this.get("/consensus")
 	ret := &ep.ConsensusState{}
@@ -135,9 +136,11 @@ func (this *WebApiSuite) Test_B5_Peers() {
 	this.NoError(errD)
 	this.Equal(ret, this.testData.GetPeers.Output)
 }
+*/
 
 // ********************************************* Transactions *********************************************
-
+// TODO
+/*
 func (this *WebApiSuite) Test_C0_TxCreate() {
 	resp := this.postJson("/unsafe/txpool", this.testData.TransactCreate.Input)
 	ret := &ep.Receipt{}
@@ -169,7 +172,7 @@ func (this *WebApiSuite) Test_C3_CallCode() {
 	this.NoError(errD)
 	this.Equal(ret, this.testData.CallCode.Output)
 }
-
+*/
 // ********************************************* Accounts *********************************************
 
 func (this *WebApiSuite) Test_D0_GetAccounts() {
@@ -209,6 +212,8 @@ func (this *WebApiSuite) Test_D3_GetStorageAt() {
 }
 
 // ********************************************* Blockchain *********************************************
+// TODO
+/*
 
 func (this *WebApiSuite) Test_E0_GetBlockchainInfo() {
 	resp := this.get("/blockchain")
@@ -249,6 +254,7 @@ func (this *WebApiSuite) Test_E4_GetBlocks() {
 	this.NoError(errD)
 	this.Equal(ret, this.testData.GetBlocks.Output)
 }
+*/
 
 // ********************************************* Utilities *********************************************
 
diff --git a/txs/tx_test.go b/txs/tx_test.go
index 15764304..5c7df10b 100644
--- a/txs/tx_test.go
+++ b/txs/tx_test.go
@@ -13,8 +13,8 @@ import (
 var chainID string
 
 func init() {
+	tendermint_test.ResetConfig("txs_test")
 	chainID = config.GetString("chain_id")
-	tendermint_test.ResetConfig("state_test")
 }
 
 func TestSendTxSignable(t *testing.T) {
-- 
GitLab