Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
__version__ test stub
Browse files Browse the repository at this point in the history
  • Loading branch information
David Huser committed Oct 18, 2020
1 parent bd7b46c commit b7993a2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/test_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from dhis2.__version__ import (
__title__,
__description__,
__url__,
__version__,
__author__,
__author_email__,
__license__,
)


def test_version_attributes():
assert __title__
assert __description__
assert __url__
assert __version__
assert __author__
assert __author_email__
assert __license__

0 comments on commit b7993a2

Please sign in to comment.