7 lines
161 B
Python
7 lines
161 B
Python
from my import orgmode
|
|
|
|
|
|
def test() -> None:
|
|
# meh
|
|
results = list(orgmode.query().query_all(lambda x: x.with_tag('python')))
|
|
assert len(results) > 5
|