( self )
| 125 | config["functionToCallLater"]() |
| 126 | |
| 127 | def testIgnoreFiles( self ) : |
| 128 | |
| 129 | config = {} |
| 130 | IECore.loadConfig( |
| 131 | |
| 132 | IECore.SearchPath( os.path.join( os.path.dirname( __file__ ), "config", "ignoreFiles" ) ), |
| 133 | contextDict = { "config" : config }, |
| 134 | |
| 135 | ) |
| 136 | |
| 137 | self.assertFalse( "tildeConfigRan" in config ) |
| 138 | self.assertFalse( "notDotPyRan" in config ) |
| 139 | |
| 140 | self.assertEqual( config["a"], 1000 ) |
| 141 | |
| 142 | def testOrderWithinDirectory( self ) : |
| 143 |
nothing calls this directly
no test coverage detected