Conditions | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """This module is to test the program path provider.""" |
||
13 | def test_default_path(self): |
||
14 | r""" |
||
15 | If the user installed the application into the default directory. |
||
16 | |||
17 | it is in "C:/Program Files/Rainmeter" |
||
18 | """ |
||
19 | default_program_path = PROGRAM_PATH_PROVIDER.get_rm_path_from_default_path() |
||
20 | |||
21 | self.assertEqual(default_program_path, "C:\\Program Files\\Rainmeter") |
||
22 | |||
44 |