(self, key)
| 366 | json.dumps(as_dict) |
| 367 | |
| 368 | def assert_roundtrip(self, key): |
| 369 | assert RSAKey(key.to_dict(), ALGORITHMS.RS256).to_dict() == key.to_dict() |
| 370 | |
| 371 | @pytest.mark.parametrize("private_key", PRIVATE_KEYS) |
| 372 | def test_to_dict(self, private_key): |
no test coverage detected