(self, backend)
| 208 | MultiFernet([]) |
| 209 | |
| 210 | def test_non_iterable_argument(self, backend): |
| 211 | with pytest.raises(TypeError): |
| 212 | MultiFernet(None) # type: ignore[arg-type] |
| 213 | |
| 214 | def test_rotate_bytes(self, backend): |
| 215 | f1 = Fernet(base64.urlsafe_b64encode(b"\x00" * 32), backend=backend) |
nothing calls this directly
no test coverage detected