eorg/tests/test_documents.py

10 lines
199 B
Python
Executable File

import os
import pytest
from eorg.parser import parse
def test_basic():
with open(os.path.abspath("./tests/fixtures/test.org"), "r") as fp:
doc = parse(fp)
assert len(doc) == 8