Skip to content

Commit

Permalink
create test_version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anabiman committed Aug 14, 2022
1 parent 26fece1 commit 9e95316
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions auto_martini/tests/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
"""
Basic version test for the auto_martini package.
"""
import pytest
import auto_martini

try:
from importlib import metadata
except ImportError:
import importlib_metadata as metadata


def test_auto_martini_version():

assert auto_martini.__version__ == metadata.version("auto_martini")

0 comments on commit 9e95316

Please sign in to comment.