Skip to content

Commit

Permalink
Add additional version comparison test
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Jul 31, 2024
1 parent 521851b commit 592d555
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_authentications.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...

Expand Down

0 comments on commit 592d555

Please sign in to comment.