We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5354bc9 commit 2019762Copy full SHA for 2019762
src/tests/test_module.py
@@ -62,7 +62,9 @@ def testModuleInterface(self):
62
import System
63
self.assertEquals(type(System.__dict__), type({}))
64
self.assertEquals(System.__name__, 'System')
65
+ print (System.__file__)
66
self.assertTrue(System.__file__.endswith("System.dll"))
67
+ print (System.__doc__)
68
self.assertTrue(System.__doc__.startswith("Namespace containing types from the following assemblies:"))
69
self.assertTrue(self.isCLRClass(System.String))
70
self.assertTrue(self.isCLRClass(System.Int32))
0 commit comments