Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """This module is for testing the online checker.""" |
||
11 | class TestRmDocOnlineChecker(TestCase): |
||
12 | """Test of the online checks for Rainmeter Documentation using unittest.""" |
||
13 | |||
14 | def test_is_rm_doc_online(self): |
||
15 | """Rainmeter Documentation should be up to synchronize with it.""" |
||
16 | is_online = ONLINE_CHECKER.is_rm_doc_online() |
||
17 | |||
18 | self.assertTrue(is_online) |
||
19 | |||
39 |