(db: TinyDB)
| 202 | |
| 203 | |
| 204 | def test_remove_ids(db: TinyDB): |
| 205 | db.remove(doc_ids=[1, 2]) |
| 206 | |
| 207 | assert len(db) == 1 |
| 208 | |
| 209 | |
| 210 | def test_remove_returns_ids(db: TinyDB): |
nothing calls this directly
no test coverage detected
searching dependent graphs…