( self )
| 40 | class ConfigLoaderTest( unittest.TestCase ) : |
| 41 | |
| 42 | def testLoadConfig( self ) : |
| 43 | |
| 44 | config = {} |
| 45 | IECore.loadConfig( |
| 46 | |
| 47 | IECore.SearchPath( os.path.join( os.path.dirname( __file__ ), "config", "orderOne" ) ), |
| 48 | contextDict = { "config" : config }, |
| 49 | |
| 50 | ) |
| 51 | |
| 52 | self.assertEqual( config["a"], 1 ) |
| 53 | |
| 54 | def testOrder( self ) : |
| 55 |
nothing calls this directly
no test coverage detected