package coinut // // const ( // apiKey = "" // apiSecret = "" // ) // // var c COINUT // // func TestSetDefaults(t *testing.T) { // c.SetDefaults() // } // // func TestSetup(t *testing.T) { // exch := config.ExchangeConfig{} // c.Setup(exch) // // exch.Enabled = true // exch.APIKey = apiKey // exch.APISecret = apiSecret // c.Setup(exch) // } // // // func TestGetInstruments(t *testing.T) { // // c.Verbose = true // // resp, err := c.GetInstruments() // // if err == nil { // // t.Error("Test failed - GetInstruments() error", err) // // } // // log.Println(resp) // // }