aboutsummaryrefslogtreecommitdiff
path: root/tests/library/postal.test.py
blob: f4b3dc36c00fe4754e9fa6bbea152a9a7d758337 (plain)
1
2
3
4
5
6
7
8
9
from edify.library import postal


def test_valid_postal():
    assert postal("12345")


def test_bad_postal():
    assert not postal("nope-!!!")