blob: 68e5c7ab80fb27c73082517848e8b2526352ecdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package bilibili
import (
"testing"
)
func Test_callGet(t *testing.T) {
// an always-fail request should not panic
bi := NewBilibili()
_, err := callGet[BaseResponse[struct{}]](bi, "https://256.256.256.256")
if err == nil {
t.Fatalf("the artificial request should fail, but it haven't")
}
}
|