summaryrefslogtreecommitdiff
path: root/tests/test_runner_apps/sample/pattern_tests.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-01-04 14:41:38 -0500
committerTim Graham <timograham@gmail.com>2018-01-04 15:41:33 -0500
commit8e1a7dab4b98dee2c696d435ea02f56de6250aa0 (patch)
tree484aa0e6600e67efcbc6f832bfecd96867a0535c /tests/test_runner_apps/sample/pattern_tests.py
parentd7b2aa24f75434c2ce50100cfef3586071e0747a (diff)
Reorganized test_runner test apps.
Diffstat (limited to 'tests/test_runner_apps/sample/pattern_tests.py')
-rw-r--r--tests/test_runner_apps/sample/pattern_tests.py7
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)