@@ -196,6 +196,8 @@ def test_numbered_or_typeless_street_name(input, expected):
196196 ("NW" , True ),
197197 ("SE" , True ),
198198 ("S.E." , True ),
199+ ("NORTHWEST" , True ),
200+ ("southeast" , True ),
199201 # negative assertions
200202 ("NW." , False ),
201203 ("NS" , False ),
@@ -503,6 +505,8 @@ def test_po_box_positive(input, expected):
503505 ("15 ROUTE 9H" , True ),
504506 ("123 w 456 s" , True ),
505507 ("123 SE 4 NE" , True ),
508+ ("123 Route 70" , True ),
509+ ("1234 WOODMONT DRIVE NORTHWEST" , True ),
506510 # negative assertions
507511 ("6 95 34 75 COMPANY PHONE IS" , False ),
508512 (", 666 Hell ST PMB 29700" , False ),
@@ -635,6 +639,8 @@ def test_full_street_positive(input, expected):
635639 ("1234 PEDDY RD SPC 42,RIVERSIDE,CA,92509" , True ),
636640 ("123 Blackwood street Ap B5 Philadelphia, PA 19116" , True ),
637641 ("123 w 456 s mighey, IN 46953" , True ),
642+ ("123 Route 75 STE 155 Toms River, NJ 08755" , True ),
643+ ("1234 WOODMONT DRIVE NORTHWEST APT# APT F-15 LENOIR NC 28645" , True ),
638644 # negative assertions
639645 ("ONE HEALING CENTER LLC, 16444" , False ),
640646 ("85 STEEL REGULAR SHAFT - NE" , False ),
0 commit comments