(self)
| 444 | self.assertEqual(user_path, expected) |
| 445 | |
| 446 | def test_main(self): |
| 447 | # just making sure _main() runs and returns things in the stdout |
| 448 | with captured_stdout() as output: |
| 449 | _main() |
| 450 | self.assertTrue(len(output.getvalue().split('\n')) > 0) |
| 451 | |
| 452 | @unittest.skipIf(sys.platform == "win32", "Does not apply to Windows") |
| 453 | def test_ldshared_value(self): |
nothing calls this directly
no test coverage detected