Skip to content

Commit 2019762

Browse files
committed
add a couple of prints to unit test to see what's happening in travis-ci.
1 parent 5354bc9 commit 2019762

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tests/test_module.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ def testModuleInterface(self):
6262
import System
6363
self.assertEquals(type(System.__dict__), type({}))
6464
self.assertEquals(System.__name__, 'System')
65+
print (System.__file__)
6566
self.assertTrue(System.__file__.endswith("System.dll"))
67+
print (System.__doc__)
6668
self.assertTrue(System.__doc__.startswith("Namespace containing types from the following assemblies:"))
6769
self.assertTrue(self.isCLRClass(System.String))
6870
self.assertTrue(self.isCLRClass(System.Int32))

0 commit comments

Comments
 (0)