From 592d555105bdf95166bf60da9a0be7957f0d62b4 Mon Sep 17 00:00:00 2001 From: Joshua Hiller Date: Wed, 31 Jul 2024 17:36:59 -0400 Subject: [PATCH] Add additional version comparison test --- tests/test_authentications.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_authentications.py b/tests/test_authentications.py index ef462bb76..d63ad36fe 100644 --- a/tests/test_authentications.py +++ b/tests/test_authentications.py @@ -281,6 +281,9 @@ def test_version_check(self): def test_version_compare(self): assert bool(version("1.2.16")) # Will be true as this method is released in 1.3+ + def test_version_compare_quick(self): + assert bool(version("0.9")) # Will be true as this method is released in 1.3+ + def test_version_compare_exact_match(self): assert bool(version(version())) # Should be a while before we hit that...