7 lines
156 B
Python
7 lines
156 B
Python
#!/usr/bin/env python3
|
|
|
|
from my.hypothesis import pages, highlights
|
|
|
|
def test():
|
|
assert len(list(pages())) > 10
|
|
assert len(list(highlights())) > 10
|