blob: 4581084d0cedce98c0a4d68511ccdce7ca1fdbd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package bilibili
import (
"github.com/keuin/slbr/logging"
"github.com/keuin/slbr/types"
"log"
"testing"
)
func Test_callGet(t *testing.T) {
// an always-fail request should not panic
bi := NewBilibili(logging.NewWrappedLogger(log.Default(), "main"))
_, err := callGet[types.BaseResponse[struct{}]](bi, "https://256.256.256.256")
if err == nil {
t.Fatalf("the artificial request should fail, but it haven't")
}
}
|