Unit test for get_share_path()
(self)
| 69 | f'No share dir exists among: {got_shared_dirs}') |
| 70 | |
| 71 | def test_get_share_path(self): |
| 72 | """Unit test for get_share_path()""" |
| 73 | for fn in ('app-menu.ui', 'protected_path.xml'): |
| 74 | self.assertExists(get_share_path(fn)) |
| 75 | self.assertIsNone(get_share_path('nonexistent')) |
| 76 | |
| 77 | |
| 78 | def suite(): |
nothing calls this directly
no test coverage detected