def authority_data(app): """Test indexation using authority data.""" schema = 'http://localhost:5000/marc21/authority/ad-v1.0.0.json' with app.test_request_context(): records = load_records(app=app, filename='data/marc21/authority.xml', schema=schema) yield records with app.test_request_context(): remove_records(app, records)
def bibliographic_data(app): """Test indexation using bibliographic data.""" schema = "http://localhost:5000/marc21/bibliographic/bd-v1.0.0.json" with app.test_request_context(): records = load_records(app=app, filename="data/marc21/bibliographic.xml", schema=schema) yield records with app.test_request_context(): remove_records(app, records)
def bibliographic_data(app): """Test indexation using bibliographic data.""" schema = 'http://localhost:5000/marc21/bibliographic/bd-v1.0.0.json' with app.test_request_context(): records = load_records(app=app, filename='data/marc21/bibliographic.xml', schema=schema) yield records with app.test_request_context(): remove_records(app, records)