Index: expect_tests/test/data/package1/file1_test.py |
diff --git a/expect_tests/test/data/package1/file1_test.py b/expect_tests/test/data/package1/file1_test.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..93e55de4fc15019202be79f5d04fb70c1479f553 |
--- /dev/null |
+++ b/expect_tests/test/data/package1/file1_test.py |
@@ -0,0 +1,5 @@ |
+import unittest |
agable
2014/11/12 03:15:10
It's not clear why file1_test has an actual file1
pgervais
2014/11/13 00:28:27
It was not clear to me either until you asked: I s
|
+ |
+class File1Test(unittest.TestCase): |
+ def test_trivial_1(self): |
+ self.assertTrue(True) |