diff --git a/application.py b/application.py index 1de6dedfa..804162005 100644 --- a/application.py +++ b/application.py @@ -2,6 +2,7 @@ from flask import Flask app = Flask(__name__) + @app.route('/') def index(): return 'Hello from notify-admin-frontend' diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh old mode 100644 new mode 100755 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/test_app.py b/tests/test_app.py new file mode 100644 index 000000000..3fbfeedd1 --- /dev/null +++ b/tests/test_app.py @@ -0,0 +1,2 @@ +def test_app(): + assert 1 == 1