(db)
| 21 | |
| 22 | |
| 23 | def test_one_table(db): |
| 24 | table1 = db.table('table1') |
| 25 | |
| 26 | table1.insert_multiple({'int': 1, 'char': c} for c in 'abc') |
| 27 | |
| 28 | assert table1.get(where('int') == 1)['char'] == 'a' |
| 29 | assert table1.get(where('char') == 'b')['char'] == 'b' |
| 30 | |
| 31 | |
| 32 | def test_multiple_tables(db): |
nothing calls this directly
no test coverage detected
searching dependent graphs…