We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b55e5b commit 52e9992Copy full SHA for 52e9992
1 file changed
tests/test_turkic_patronymic_order.py
@@ -224,3 +224,13 @@ def test_ordinary_western_four_token_name(self) -> None:
224
assert n.first == "Smith"
225
assert n.middle == "John Michael"
226
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