Total Complexity | 1 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """This module is for testing the online checker.""" |
||
31 | class TestRawGithubOnlineChecker(TestCase): |
||
32 | """Test of the online checks for Raw Github using unittest since raw is served from different service.""" |
||
33 | |||
34 | def test_is_raw_gh_online(self): |
||
35 | """Raw Github should be up to download stuff from it.""" |
||
36 | is_online = ONLINE_CHECKER.is_gh_raw_online() |
||
37 | |||
38 | self.assertTrue(is_online) |
||
39 |