summaryrefslogtreecommitdiff
path: root/tests/test_ns_enum.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ns_enum.py')
-rw-r--r--tests/test_ns_enum.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_ns_enum.py b/tests/test_ns_enum.py
index 7a30718..c950812 100644
--- a/tests/test_ns_enum.py
+++ b/tests/test_ns_enum.py
@@ -18,6 +18,7 @@ from natsort import ns
("NANLAST", 0x0400),
("COMPATIBILITYNORMALIZE", 0x0800),
("NUMAFTER", 0x1000),
+ ("PRESORT", 0x2000),
("DEFAULT", 0x0000),
("INT", 0x0000),
("UNSIGNED", 0x0000),
@@ -42,6 +43,7 @@ from natsort import ns
("NL", 0x0400),
("CN", 0x0800),
("NA", 0x1000),
+ ("PS", 0x2000),
],
)
def test_ns_enum(given: str, expected: int) -> None: