(db: TinyDB)
| 19 | |
| 20 | |
| 21 | def test_all(db: TinyDB): |
| 22 | db.drop_tables() |
| 23 | |
| 24 | for i in range(10): |
| 25 | db.insert({}) |
| 26 | |
| 27 | assert len(db.all()) == 10 |
| 28 | |
| 29 | |
| 30 | def test_insert(db: TinyDB): |
nothing calls this directly
no test coverage detected
searching dependent graphs…