Skip to content

Commit

Permalink
Add simple tests to validate that we're able to get the version
Browse files Browse the repository at this point in the history
Add a test to ensure that for every version of Python we support we're
able to get the version. Not checking what that version is as that
almost defeats the point of the test.
  • Loading branch information
PacificGilly committed Mar 29, 2024
1 parent 02a9120 commit d46a888
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/test_init.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import jazzmin


def test_version():
"""
Tests getting the version of the installed package in all versions of Python we support.
"""
assert jazzmin.version >= "0.0.0"

0 comments on commit d46a888

Please sign in to comment.