forked from orbit-oss/flask
* Forward port the CLI tests from Flask-CLI. * Make sure the parameter passed to the CLI's AppGroup is the app's name, not the app itself.
6 lines
123 B
Python
6 lines
123 B
Python
from __future__ import absolute_import, print_function
|
|
|
|
from flask import Flask
|
|
|
|
app1 = Flask('app1')
|
|
app2 = Flask('app2')
|