| Conditions | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """This module is to test the program path provider.""" |
||
| 34 | def test_overall(self): |
||
| 35 | r""" |
||
| 36 | Per default we install it onto "C:/Program Files/Rainmeter". |
||
| 37 | |||
| 38 | But since we use the path internally we already add / to it |
||
| 39 | and python internal path uses \\ instead windows / |
||
| 40 | """ |
||
| 41 | program_path = PROGRAM_PATH_PROVIDER.get_cached_program_path() |
||
| 42 | |||
| 43 | self.assertEqual(program_path, "C:\\Program Files\\Rainmeter\\") |
||
| 44 |