| Total Complexity | 1 |
| Total Lines | 8 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | """This module is for testing the online checker.""" |
||
| 21 | class TestGithubOnlineChecker(TestCase): |
||
| 22 | """Test of the online checks for Github using unittest.""" |
||
| 23 | |||
| 24 | def test_is_gh_online(self): |
||
| 25 | """Github should be up to download stuff from it.""" |
||
| 26 | is_online = ONLINE_CHECKER.is_gh_online() |
||
| 27 | |||
| 28 | self.assertTrue(is_online) |
||
| 29 | |||
| 39 |