Page MenuHomec4science

test.py
No OneTemporary

File Metadata

Created
Sat, Apr 27, 07:23
#!/usr/bin/env python2
import unittest, pytest
import python as p
class Test(unittest.TestCase):
def test_return(self):
self.assertTrue(p.myfunc() == 'test')
self.assertTrue(p.myfunc() != 'test')
if __name__ == '__main__':
pytest.main(['./test.py', '--tap-stream'])

Event Timeline