Thanks to visit codestin.com Credit goes to github.com
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 30cc22a commit 263e249Copy full SHA for 263e249
src/tests/test_module.py
@@ -62,8 +62,8 @@ def testModuleInterface(self):
62
import System
63
self.assertEquals(type(System.__dict__), type({}))
64
self.assertEquals(System.__name__, 'System')
65
- self.assertEquals(System.__file__, None)
66
- self.assertEquals(System.__doc__, None)
+ self.assertTrue(System.__file__.endswith("System.dll"))
+ self.assertTrue(System.__doc__.startswith("Namespace containing types from the following assemblies:"))
67
self.assertTrue(self.isCLRClass(System.String))
68
self.assertTrue(self.isCLRClass(System.Int32))
69
0 commit comments