-
Notifications
You must be signed in to change notification settings - Fork 3
/
manga_test.go
83 lines (72 loc) · 1.54 KB
/
manga_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package jikan
import (
"net/url"
"testing"
)
func TestGetMangaById(t *testing.T) {
if _, err := GetMangaById(1); err != nil {
t.Error(err)
}
}
func TestGetMangaCharacters(t *testing.T) {
if _, err := GetMangaCharacters(1); err != nil {
t.Error(err)
}
}
func TestGetMangaNews(t *testing.T) {
if _, err := GetMangaNews(1, 1); err != nil {
t.Error(err)
}
}
func TestGetMangaTopics(t *testing.T) {
if _, err := GetMangaForum(1, MangaForumFilterAll); err != nil {
t.Error(err)
}
}
func TestGetMangaPictures(t *testing.T) {
if _, err := GetMangaPictures(1); err != nil {
t.Error(err)
}
}
func TestGetMangaStatistics(t *testing.T) {
if _, err := GetMangaStatistics(1); err != nil {
t.Error(err)
}
}
func TestGetMangaMoreInfo(t *testing.T) {
if _, err := GetMangaMoreInfo(1); err != nil {
t.Error(err)
}
}
func TestGetMangaRecommendations(t *testing.T) {
if _, err := GetMangaRecommendations(1); err != nil {
t.Error(err)
}
}
func TestGetMangaUserUpdates(t *testing.T) {
if _, err := GetMangaUserUpdates(1, 1); err != nil {
t.Error(err)
}
}
func TestGetMangaReviews(t *testing.T) {
if _, err := GetMangaReviews(1, 1); err != nil {
t.Error(err)
}
}
func TestGetMangaRelations(t *testing.T) {
if _, err := GetMangaRelations(1); err != nil {
t.Error(err)
}
}
func TestGetMangaExternal(t *testing.T) {
if _, err := GetMangaExternal(1); err != nil {
t.Error(err)
}
}
func TestGetMangaSearch(t *testing.T) {
query := url.Values{}
query.Set("q", "Monster")
if _, err := GetMangaSearch(query); err != nil {
t.Error(err)
}
}