From 6539acd170b5c41b949928cc50ad7787cf634f45 Mon Sep 17 00:00:00 2001 From: "Ilya.Kazakevich" Date: Sat, 18 Feb 2017 01:38:05 +0300 Subject: [PATCH] PY-22641: test added --- .../testRunner/env/testsInFolder/tests/test_spam.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python/testData/testRunner/env/testsInFolder/tests/test_spam.py diff --git a/python/testData/testRunner/env/testsInFolder/tests/test_spam.py b/python/testData/testRunner/env/testsInFolder/tests/test_spam.py new file mode 100644 index 000000000000..800ab9007972 --- /dev/null +++ b/python/testData/testRunner/env/testsInFolder/tests/test_spam.py @@ -0,0 +1,10 @@ +from unittest import TestCase + + +def test_funeggs(): + pass + + +class EggsTest(TestCase): + def test_metheggs(self): + pass