(self)
| 110 | self.assertEqual(out.count(self.PS2), 0) |
| 111 | |
| 112 | def test_interact_quit(self): |
| 113 | out, err = self.run_cli(commands=(".quit",)) |
| 114 | self.assertIn(self.MEMORY_DB_MSG, err) |
| 115 | self.assertEndsWith(out, self.PS1) |
| 116 | self.assertEqual(out.count(self.PS1), 1) |
| 117 | self.assertEqual(out.count(self.PS2), 0) |
| 118 | |
| 119 | def test_interact_version(self): |
| 120 | out, err = self.run_cli(commands=(".version",)) |
nothing calls this directly
no test coverage detected