()
| 24 | |
| 25 | |
| 26 | def test_not_enough_segments(): |
| 27 | s = "a.b.c" |
| 28 | jwe = JsonWebEncryption() |
| 29 | with pytest.raises(errors.DecodeError): |
| 30 | jwe.deserialize_compact(s, None) |
| 31 | |
| 32 | |
| 33 | def test_invalid_header(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…