mtg-price-bot/cardsinfo/prices_test.go
2020-11-09 15:24:32 +03:00

13 lines
204 B
Go

package cardsinfo
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestParser(t *testing.T) {
prices, err := GetPrices("Black lotus")
assert.Nil(t, err)
assert.NotEmpty(t, prices)
}