Remove more test_apps

This commit is contained in:
Markus Unterwaditzer 2014-09-04 15:21:18 +02:00
parent b88a837674
commit a00ccdce94
2 changed files with 2 additions and 3 deletions

View file

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

View file

@ -577,7 +577,8 @@ class TestNoImports(object):
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:
flask.Flask('importerror')
except NotImplementedError: