Files
BibAPI/tests/test_sru.py

8 lines
230 B
Python

from src.bibapi import SWB
def test_swb_schema() -> None:
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"