Skip to content

Commit 52e9992

Browse files
committed
test: Turkic patronymic name order is inert with the flag off (#185)
1 parent 5b55e5b commit 52e9992

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

tests/test_turkic_patronymic_order.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,3 +224,13 @@ def test_ordinary_western_four_token_name(self) -> None:
224224
assert n.first == "Smith"
225225
assert n.middle == "John Michael"
226226
assert n.last == "Anderson"
227+
228+
229+
class TurkicPatronymicNameOrderFlagOffTests(HumanNameTestBase):
230+
"""With default Constants (flag=False) nothing changes."""
231+
232+
def test_reversed_order_unchanged(self) -> None:
233+
n = HumanName("Aliyev Vusal Said oglu")
234+
assert n.first == "Aliyev"
235+
assert n.middle == "Vusal Said"
236+
assert n.last == "oglu"

0 commit comments

Comments
 (0)