diff --git a/tests/unittests/buildconf_test.py b/tests/unittests/buildconf_test.py new file mode 100644 index 0000000000..264b3c27f5 --- /dev/null +++ b/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')