HPI/tests/orgmode.py
Dima Gerasimov a5643206a0 general: make time.tz.via_location user config lazy, move tests to my.tests package
also gets rid of the problematic reset_modules thingie
2024-08-26 04:00:58 +01:00

9 lines
284 B
Python

from my.tests.common import skip_if_not_karlicoss as pytestmark
def test() -> None:
from my import orgmode
from my.core.orgmode import collect
# meh
results = list(orgmode.query().collect_all(lambda n: [n] if 'python' in n.tags else []))
assert len(results) > 5