summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2')
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/__init__.py1
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/deep_nest_test.py22
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/non_test_file.py3
3 files changed, 26 insertions, 0 deletions
diff --git a/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/__init__.py b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/__init__.py
new file mode 100644
index 000000000000..8b137891791f
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/__init__.py
@@ -0,0 +1 @@
+
diff --git a/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/deep_nest_test.py b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/deep_nest_test.py
new file mode 100644
index 000000000000..7b1972b89c8a
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/deep_nest_test.py
@@ -0,0 +1,22 @@
+import unittest
+
+class SampleTest(unittest.TestCase):
+
+ def setUp(self):
+ return
+
+ def tearDown(self):
+ return
+
+ def test_non_unique_name(self):
+ pass
+
+ def test_asdf2(self):
+ pass
+
+ def test_i_am_a_unique_test_name(self):
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/non_test_file.py b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/non_test_file.py
new file mode 100644
index 000000000000..470c65046922
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/nested_dir/nested2/non_test_file.py
@@ -0,0 +1,3 @@
+
+""" i am a python file with no tests """
+pass