(self)
| 154 | |
| 155 | class TestDropDown(unittest.TestCase): |
| 156 | def test_init(self): |
| 157 | widget = gui.DropDown() |
| 158 | widget.append('test drop down') |
| 159 | self.assertIn('test drop down', widget.repr()) |
| 160 | assertValidHTML(widget.repr()) |
| 161 | |
| 162 | class TestDropDownItem(unittest.TestCase): |
| 163 | def test_init(self): |
nothing calls this directly
no test coverage detected