summaryrefslogtreecommitdiffstats
path: root/tests/tpb02/foo/test_foo.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tpb02/foo/test_foo.py')
-rw-r--r--tests/tpb02/foo/test_foo.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/tpb02/foo/test_foo.py b/tests/tpb02/foo/test_foo.py
new file mode 100644
index 0000000..174b86b
--- /dev/null
+++ b/tests/tpb02/foo/test_foo.py
@@ -0,0 +1,11 @@
+from unittest import TestCase
+
+
+class RequiredTest(TestCase):
+ def test_tests_are_executed(self):
+ open('test-executed', 'w').close()
+
+ def test_testfiles_exist(self):
+ open('testfile1.txt').close()
+ open('testfile2.txt').close()
+ open('testdir/testfile3.txt').close()