( self )
| 112 | self.assertFalse( "a" in config ) |
| 113 | |
| 114 | def testScope( self ) : |
| 115 | |
| 116 | config = {} |
| 117 | IECore.loadConfig( |
| 118 | |
| 119 | IECore.SearchPath( os.path.join( os.path.dirname( __file__ ), "config", "scope" ) ), |
| 120 | contextDict = { "config" : config }, |
| 121 | raiseExceptions = True |
| 122 | |
| 123 | ) |
| 124 | |
| 125 | config["functionToCallLater"]() |
| 126 | |
| 127 | def testIgnoreFiles( self ) : |
| 128 |
nothing calls this directly
no test coverage detected