summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py')
-rw-r--r--python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py b/python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py
new file mode 100644
index 000000000000..fdde67e4aec4
--- /dev/null
+++ b/python/helpers/pydev/tests_runfiles/samples/simpleModule_test.py
@@ -0,0 +1,16 @@
+import unittest
+
+def setUpModule():
+ raise ValueError("This is an INTENTIONAL value error in setUpModule.")
+
+class SetUpModuleTest(unittest.TestCase):
+
+ def setUp(cls):
+ pass
+
+ def test_blank(self):
+ pass
+
+
+if __name__ == '__main__':
+ unittest.main()