Test the creation of Squeezer instances.
(self)
| 136 | self.assertEqual(squeezer.count_lines(text), expected) |
| 137 | |
| 138 | def test_init(self): |
| 139 | """Test the creation of Squeezer instances.""" |
| 140 | editwin = self.make_mock_editor_window() |
| 141 | squeezer = self.make_squeezer_instance(editwin) |
| 142 | self.assertIs(squeezer.editwin, editwin) |
| 143 | self.assertEqual(squeezer.expandingbuttons, []) |
| 144 | |
| 145 | def test_write_no_tags(self): |
| 146 | """Test Squeezer's overriding of the EditorWindow's write() method.""" |
nothing calls this directly
no test coverage detected