Files
BibAPI/tests/test_sru.py

9 lines
238 B
Python

from src.bibapi.sru import SWB
def test_swb_schema():
result = SWB().getBooks(["pica.tit=Java ist auch eine Insel", "pica.bib=20735"])
assert len(result) == 1
assert result[0].title == "Java ist auch eine Insel"
assert