(self)
| 4 | |
| 5 | class TestXvfbwrapper(unittest.TestCase): |
| 6 | def test_xvfb(self): |
| 7 | vdisplay = Xvfb() |
| 8 | vdisplay.start() |
| 9 | display_var = ':{}'.format(vdisplay.new_display) |
| 10 | self.assertEqual(display_var, os.environ['DISPLAY']) |
| 11 | vdisplay.stop() |
nothing calls this directly
no outgoing calls
no test coverage detected