add test for not exists in __init__
This commit is contained in:
parent
b4e8aac662
commit
494189435d
@ -19,6 +19,12 @@ class TestXvfb(unittest.TestCase):
|
|||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.reset_display()
|
self.reset_display()
|
||||||
|
|
||||||
|
def test_xvfb_binary_not_exists(self):
|
||||||
|
with patch('xvfbwrapper.Xvfb.xvfb_exists') as xvfb_exists:
|
||||||
|
xvfb_exists.return_value = False
|
||||||
|
with self.assertRaises(EnvironmentError):
|
||||||
|
Xvfb()
|
||||||
|
|
||||||
def test_start(self):
|
def test_start(self):
|
||||||
xvfb = Xvfb()
|
xvfb = Xvfb()
|
||||||
self.addCleanup(xvfb.stop)
|
self.addCleanup(xvfb.stop)
|
||||||
|
Loading…
Reference in New Issue
Block a user