24 lines
618 B
Python
24 lines
618 B
Python
from pathlib import Path
|
|
|
|
from papis_extract.extractors.readera import ReadEraExtractor
|
|
|
|
valid_file = Path("tests/resources/ReadEra_sample.txt")
|
|
invalid_file = Path("tests/resources/Readest_sample.txt")
|
|
|
|
|
|
def test_identifies_readera_exports():
|
|
ex = ReadEraExtractor()
|
|
assert ex.can_process(valid_file)
|
|
|
|
|
|
# Readest exports are very similar so we should ensure it ignores them
|
|
def test_ignores_readest_exports():
|
|
ex = ReadEraExtractor()
|
|
assert not ex.can_process(invalid_file)
|
|
|
|
|
|
def test_entry_extractions():
|
|
ex = ReadEraExtractor()
|
|
result = ex.run(valid_file)
|
|
print(result)
|
|
assert False
|