mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
* Some tests fail. Will fix. * py files renamed to prevent them from unexpected discovering * "prefixes" added to tests as a way to provide different targets * verbosity improved * suite changed to "non leaf" since there are no suites in new runners
7 lines
128 B
Python
7 lines
128 B
Python
import unittest
|
|
|
|
class SubTest(unittest.TestCase):
|
|
def test_in_subfolder(self):
|
|
self.assertEquals("foo", "fo" + "o")
|
|
|
|
|