Browse Source

Remove obsolete apps

pull/1165/head
Markus Unterwaditzer 10 years ago
parent
commit
03339501ab
  1. 4
      tests/test_apps/config_module_app.py
  2. 4
      tests/test_apps/config_package_app/__init__.py
  3. 3
      tests/test_apps/lib/python2.5/site-packages/site_app.py
  4. 3
      tests/test_apps/lib/python2.5/site-packages/site_package/__init__.py
  5. 4
      tests/test_apps/main_app.py
  6. 3
      tests/test_apps/path/installed_package/__init__.py

4
tests/test_apps/config_module_app.py

@ -1,4 +0,0 @@
import os
import flask
here = os.path.abspath(os.path.dirname(__file__))
app = flask.Flask(__name__)

4
tests/test_apps/config_package_app/__init__.py

@ -1,4 +0,0 @@
import os
import flask
here = os.path.abspath(os.path.dirname(__file__))
app = flask.Flask(__name__)

3
tests/test_apps/lib/python2.5/site-packages/site_app.py

@ -1,3 +0,0 @@
import flask
app = flask.Flask(__name__)

3
tests/test_apps/lib/python2.5/site-packages/site_package/__init__.py

@ -1,3 +0,0 @@
import flask
app = flask.Flask(__name__)

4
tests/test_apps/main_app.py

@ -1,4 +0,0 @@
import flask
# Test Flask initialization with main module.
app = flask.Flask('__main__')

3
tests/test_apps/path/installed_package/__init__.py

@ -1,3 +0,0 @@
import flask
app = flask.Flask(__name__)
Loading…
Cancel
Save