This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
go-discogs/discogs_test.go

23 lines
350 B
Go
Raw Normal View History

2016-03-10 14:25:55 +00:00
package discogs
import (
"testing"
)
2017-02-14 19:01:50 +00:00
const (
testUserAgent = "UnitTestClient/0.0.2 +https://github.com/irlndts/go-discogs"
testToken = ""
)
2016-03-10 14:25:55 +00:00
func check(t *testing.T, e error) {
if e != nil {
t.Error(e)
}
}
func assert(t *testing.T, condition bool, assertion string) {
if !condition {
t.Errorf("Assertion failed: %v", assertion)
}
}