Skip to content

Commit

Permalink
Add test for __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
sdatkinson committed Dec 17, 2024
1 parent eaf9a86 commit aedc0f7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tests/test_nam/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# File: test_version.py
# Created Date: Monday December 16th 2024
# Author: Steven Atkinson ([email protected])

import pytest as _pytest

import nam as _nam

def test_has_version():
assert hasattr(_nam, "__version__")


if __name__ == "__main__":
_pytest.main()

0 comments on commit aedc0f7

Please sign in to comment.