(oct_key)
| 22 | |
| 23 | |
| 24 | def test_missint_claims(oct_key): |
| 25 | validator = JWTBearerTokenValidator(oct_key) |
| 26 | token_string = jwt.encode({"alg": "HS256"}, {}, oct_key) |
| 27 | token = validator.authenticate_token(token_string) |
| 28 | assert token is None |
| 29 | |
| 30 | |
| 31 | def test_authenticate_token(oct_key): |
nothing calls this directly
no test coverage detected
searching dependent graphs…