Skip to content

Commit

Permalink
Test that VERSION can be imported from buildconf
Browse files Browse the repository at this point in the history
  • Loading branch information
hmpf committed Feb 20, 2024
1 parent a5efc3c commit e9203f2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/unittests/buildconf_test.py
@@ -0,0 +1,9 @@
from unittest import TestCase


class TestBuildconf(TestCase):
def test_VERSION_can_be_imported(self):
try:
from nav.buildconf import VERSION
except ImportError:
self.fail('VERSION could not be imported')

0 comments on commit e9203f2

Please sign in to comment.