()
| 347 | |
| 348 | |
| 349 | def test_load_hash_vectors_bad_data(): |
| 350 | vector_data = textwrap.dedent( |
| 351 | """ |
| 352 | # https://tools.ietf.org/html/rfc1321 |
| 353 | |
| 354 | Len = 0 |
| 355 | Msg = 00 |
| 356 | UNKNOWN=Hello World |
| 357 | """ |
| 358 | ).splitlines() |
| 359 | with pytest.raises(ValueError): |
| 360 | load_hash_vectors(vector_data) |
| 361 | |
| 362 | |
| 363 | def test_load_vectors_from_file(): |
nothing calls this directly
no test coverage detected