Skip to content

Commit d3a9c0e

Browse files
committed
#27 Add test for metadata
1 parent 6ba317d commit d3a9c0e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tests/test_metadata.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# dependencies
2+
import ndradex
3+
4+
5+
# test functions
6+
def test_version():
7+
"""Make sure the version is valid."""
8+
assert ndradex.__version__ == "0.2.2"
9+
10+
11+
def test_author():
12+
"""Make sure the author is valid."""
13+
assert ndradex.__author__ == "Akio Taniguchi"

0 commit comments

Comments
 (0)