Update tests for new module helpers.

This commit is contained in:
Ron DuPlain 2012-01-07 17:55:02 -05:00
parent a3b30b7e3b
commit fde6e364a4
5 changed files with 77 additions and 51 deletions

View file

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

View file

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

View file

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

View file

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