(self)
| 34 | idleConf.GetOption("main", "History", "cyclic", 1, "bool")) |
| 35 | |
| 36 | def test_store_short(self): |
| 37 | self.history.store('a') |
| 38 | self.assertEqual(self.history.history, []) |
| 39 | self.history.store(' a ') |
| 40 | self.assertEqual(self.history.history, []) |
| 41 | |
| 42 | def test_store_dup(self): |
| 43 | self.history.store(line1) |
nothing calls this directly
no test coverage detected