Added collectors number to edition

This commit is contained in:
Artyom Belousov 2020-09-22 11:40:54 +03:00
parent 194aee8e69
commit a941095a73
2 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,7 @@
package tests
import (
"fmt"
"github.com/flygrounder/go-mtg-vk/cardsinfo"
"github.com/stretchr/testify/assert"
"testing"
@ -8,6 +9,7 @@ import (
func TestParser(t *testing.T) {
prices, err := cardsinfo.GetPrices("Scavenging Ooze")
fmt.Println(prices)
assert.Nil(t, err)
assert.NotEmpty(t, prices)
}