summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest/namespace_test_pkg/test_foo.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_unittest/namespace_test_pkg/test_foo.py')
-rw-r--r--Lib/test/test_unittest/namespace_test_pkg/test_foo.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_unittest/namespace_test_pkg/test_foo.py b/Lib/test/test_unittest/namespace_test_pkg/test_foo.py
new file mode 100644
index 0000000..05b184d
--- /dev/null
+++ b/Lib/test/test_unittest/namespace_test_pkg/test_foo.py
@@ -0,0 +1,5 @@
+import unittest
+
+class PassingTest(unittest.TestCase):
+ def test_true(self):
+ self.assertTrue(True)