Spaces:
Running
Running
| """Postcode regex tests — spec section 6.1 case 2.""" | |
| from __future__ import annotations | |
| import pytest | |
| from app.postcodes import is_ni_postcode | |
| def test_ni_postcodes_accepted(value: str) -> None: | |
| assert is_ni_postcode(value) | |
| def test_non_ni_postcodes_rejected(value: str) -> None: | |
| assert not is_ni_postcode(value) | |