(self, tmp_path)
| 11 | |
| 12 | class TestOfflineAccountBasic: |
| 13 | def test_wrong_db(self, tmp_path): |
| 14 | p = tmp_path / "hello.db" |
| 15 | p.write_text("123") |
| 16 | with pytest.raises(ValueError): |
| 17 | _account = Account(str(p)) |
| 18 | |
| 19 | def test_os_name(self, tmp_path): |
| 20 | p = tmp_path / "hello.db" |