diff options
Diffstat (limited to 'tests/test_runner_apps/sample/pattern_tests.py')
| -rw-r--r-- | tests/test_runner_apps/sample/pattern_tests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_runner_apps/sample/pattern_tests.py b/tests/test_runner_apps/sample/pattern_tests.py new file mode 100644 index 0000000000..f62a233d75 --- /dev/null +++ b/tests/test_runner_apps/sample/pattern_tests.py @@ -0,0 +1,7 @@ +from unittest import TestCase + + +class Test(TestCase): + + def test_sample(self): + self.assertEqual(1, 1) |
