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 89680c6 commit 8268181Copy full SHA for 8268181
test/test_api.py
@@ -105,11 +105,11 @@ def test_page():
105
if len(files := wiki.page_files(page_id)) > 0:
106
assert isinstance(files[0]['path'], str)
107
# XXX waiting on propagation
108
- # timestamp = 1500000000
109
- # pages_since_then = wiki.pages_since(timestamp)
110
- # print(pages_since_then)
111
- # assert all(page['metadata']['wd_page_created_at'] >= timestamp
112
- # for page in pages_since_then)
+ timestamp = 1500000000
+ pages_since_then = wiki.pages_since(timestamp)
+ print(pages_since_then)
+ assert all(page['metadata']['wd_page_created_at'] >= timestamp
+ for page in pages_since_then)
113
114
115
def test_revisions():
0 commit comments