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