Files

18 lines
354 B
Python

__author__ = 'Ilya.Kazakevich'
import unittest
class SpamTest(unittest.TestCase):
def test_1(self):
self.fail()
class SpamTest2(unittest.TestCase):
def test_2(self):
assert False
class SpamTest3(unittest.TestCase):
def test_3(self):
print('File "reference_tests.py", line 17') # Lets try if relative path works