(self, store)
| 432 | assert events[1]["metadata"]["run"] == 1 |
| 433 | |
| 434 | def test_limit(self, store): |
| 435 | for i in range(10): |
| 436 | store.log_event("extraction", {"run": i}) |
| 437 | assert len(store.get_events(limit=3)) == 3 |
| 438 | |
| 439 | def test_empty_metadata(self, store): |
| 440 | store.log_event("upload") |
nothing calls this directly
no test coverage detected