doing some testing with tests

This commit is contained in:
byt3bl33d3r 2015-08-11 16:10:12 +02:00
parent 3d9e2ac453
commit a44cf5cd29
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ from commands import getstatusoutput
class BasicTests(unittest.TestCase):
def test_exec(self):
status, res = getstatusoutput('python mitmf.py --help')
status, res = getstatusoutput('sudo python mitmf.py --help')
self.assertEqual(0, status)
if __name__ == '__main__':