def test_github_token():
    with mock.patch('os.environ', {'GH_TOKEN': 'token'}):
        assert (Github.token() == 'token')
def test_github_token():
    with mock.patch("os.environ", {"GH_TOKEN": "token"}):
        assert Github.token() == "token"