(self)
| 43 | # setUp and tearDown are used to reset the python path for each test to |
| 44 | # prevent a test from affecting another. |
| 45 | def setUp(self): |
| 46 | LoaderTest.sys_path = copy.copy(sys.path) |
| 47 | |
| 48 | def tearDown(self): |
| 49 | sys.path = LoaderTest.sys_path |
nothing calls this directly
no outgoing calls
no test coverage detected