Spaces:
Running
Running
| """Behave environment for Author RAG BDD tests.""" | |
| from __future__ import annotations | |
| def before_all(context): | |
| """Shared context for catalog and import scenarios.""" | |
| context.sample_books = { | |
| "amazon_kindle": { | |
| "title": "Lethal Lines", | |
| "author": "Paige Black", | |
| "isbn": "B0DHWS3P6T", | |
| "platform": "amazon", | |
| "url": "https://www.amazon.com/dp/B0DHWS3P6T", | |
| }, | |
| "isbn_hardcover": { | |
| "title": "Regime Change", | |
| "author": "Patrick Deneen", | |
| "isbn": "9780593128251", | |
| "platform": "amazon", | |
| "url": "https://www.amazon.com/dp/0593128257", | |
| }, | |
| } | |