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
