We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9448afb commit da376c8Copy full SHA for da376c8
1 file changed
atwiki/test/test_core.py
@@ -98,6 +98,14 @@ def test_get_list_tag(self):
98
last_index += 1
99
assert 750 <= last_index
100
101
+ count = 0
102
+ for page in self._api.get_list('曲'):
103
+ count += 1
104
+ if 100 < count:
105
+ break
106
+ else:
107
+ assert False, "unexpected number of pages for the tag"
108
+
109
pages = list(self._api.get_list('曲', _start=last_index))
110
assert 1 <= len(pages) <= 50
111
0 commit comments