summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest/namespace_test_pkg/test_foo.py
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2024-10-23 04:41:33 (GMT)
committerGitHub <noreply@github.com>2024-10-23 04:41:33 (GMT)
commitc75ff2ef8eb71d91b1f92db9c2bc7ff18c582ab1 (patch)
tree9533b26bfb3a89ae045f36c9513d93a4cc0faa47 /Lib/test/test_unittest/namespace_test_pkg/test_foo.py
parent34653bba644aa5481613f398153757d7357e39ea (diff)
downloadcpython-c75ff2ef8eb71d91b1f92db9c2bc7ff18c582ab1.zip
cpython-c75ff2ef8eb71d91b1f92db9c2bc7ff18c582ab1.tar.gz
cpython-c75ff2ef8eb71d91b1f92db9c2bc7ff18c582ab1.tar.bz2
gh-80958: unittest: discovery support for namespace packages as start directory (#123820)
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)