diff --git a/Makefile b/Makefile index 39e6dd3..8cfa0ad 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ test: | _prerequire ## Run all the tests, to run a specific test run: make test arg_2="$${args:-${1}}" && \ arg_3="$${arg_2:=$(SRC_FOLDER_FULL_PATH)}" && \ cd ${ECOMMERCE_SOURCE_PATH} && \ - DJANGO_SETTINGS_MODULE=paygate.settings.test coverage run --source="$(ROOT_DIR)" -m pytest $${arg_3} + DJANGO_SETTINGS_MODULE=nau_extensions.settings.test coverage run --source="$(ROOT_DIR)" -m pytest $${arg_3} .PHONY: test clean: ## remove all the unneeded artifacts diff --git a/nau_extensions/tests/test_info.py b/nau_extensions/tests/test_info.py new file mode 100644 index 0000000..cbb397e --- /dev/null +++ b/nau_extensions/tests/test_info.py @@ -0,0 +1,7 @@ +from ecommerce.tests.testcases import TestCase + +class InfoTests(TestCase): + + def test_cancel_response_view_default(self): + pass + \ No newline at end of file