mirror of
https://github.com/grassrootseconomics/cic-go.git
synced 2024-11-22 22:06:47 +01:00
32 lines
584 B
Go
32 lines
584 B
Go
package balance
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/lmittmann/w3"
|
|
)
|
|
|
|
type tConfig struct {
|
|
rpcProvider string
|
|
batchContract string
|
|
}
|
|
|
|
var conf = &tConfig{
|
|
rpcProvider: os.Getenv("RPC_PROVIDER"),
|
|
batchContract: os.Getenv("BATCH_CONTRACT"),
|
|
}
|
|
|
|
func TestBatchBalance_Connect(t *testing.T) {
|
|
name := "Test RPC connection"
|
|
wantErr := false
|
|
|
|
cicnet, _ := NewBatchBalance(conf.rpcProvider, w3.A(conf.batchContract))
|
|
|
|
t.Run(name, func(t *testing.T) {
|
|
if err := cicnet.Close(); (err != nil) != wantErr {
|
|
t.Errorf("Close() error = %v, wantErr %v", err, wantErr)
|
|
}
|
|
})
|
|
}
|