(db: TinyDB)
| 10 | |
| 11 | |
| 12 | def test_drop_tables(db: TinyDB): |
| 13 | db.drop_tables() |
| 14 | |
| 15 | db.insert({}) |
| 16 | db.drop_tables() |
| 17 | |
| 18 | assert len(db) == 0 |
| 19 | |
| 20 | |
| 21 | def test_all(db: TinyDB): |
nothing calls this directly
no test coverage detected
searching dependent graphs…