You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/common/cmc/v1_test.go

15 lines
189 B
Go

package coinmarketcap
import "testing"
func TestV1Tickers(t *testing.T) {
coins, err := V1Tickers(10, "EUR")
if err != nil {
t.FailNow()
}
if len(coins) != 10 {
t.FailNow()
}
}