validate_github_token should accept properly-formatted tokens.
(token: str)
| 33 | ], |
| 34 | ) |
| 35 | def test_validate_github_token_valid(token: str) -> None: |
| 36 | """validate_github_token should accept properly-formatted tokens.""" |
| 37 | # Should not raise any exception |
| 38 | validate_github_token(token) |
| 39 | |
| 40 | |
| 41 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected