Browse Source

Remove more test_apps

pull/1165/head
Markus Unterwaditzer 11 years ago
parent
commit
a00ccdce94
  1. 2
      tests/test_apps/importerror.py
  2. 3
      tests/test_helpers.py

2
tests/test_apps/importerror.py

@ -1,2 +0,0 @@
# TestNoImports
raise NotImplementedError

3
tests/test_helpers.py

@ -577,7 +577,8 @@ class TestNoImports(object):
imp modules in the Python standard library. imp modules in the Python standard library.
""" """
def test_name_with_import_error(self): def test_name_with_import_error(self, apps_tmpdir):
apps_tmpdir.join('importerror.py').write('raise NotImplementedError()')
try: try:
flask.Flask('importerror') flask.Flask('importerror')
except NotImplementedError: except NotImplementedError:

Loading…
Cancel
Save