| Index: expect_tests/test/data/package1/file1.py
|
| diff --git a/expect_tests/test/data/package1/file1.py b/expect_tests/test/data/package1/file1.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ac0306852c85ea958956cec794ef15b1bba4fca8
|
| --- /dev/null
|
| +++ b/expect_tests/test/data/package1/file1.py
|
| @@ -0,0 +1,7 @@
|
| +import unittest
|
| +
|
| +# This test should NOT be found by test listing functions, because the file
|
| +# name does not end with _test.py.
|
| +class File1SpuriousTest(unittest.TestCase):
|
| + def test_spurious_1(self):
|
| + self.assertTrue(True)
|
|
|