mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 08:41:59 +07:00
18 lines
354 B
Python
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
|