()
| 47 | |
| 48 | |
| 49 | def test_rsa_import_ssh_pem(): |
| 50 | raw = read_file_path("ssh_public.pem") |
| 51 | key = RSAKey.import_key(raw) |
| 52 | obj = key.as_dict() |
| 53 | assert obj["kty"] == "RSA" |
| 54 | |
| 55 | |
| 56 | def test_rsa_public_key(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…