本文整理汇总了Python中__init__.TestWSGIController.setUp方法的典型用法代码示例。如果您正苦于以下问题:Python TestWSGIController.setUp方法的具体用法?Python TestWSGIController.setUp怎么用?Python TestWSGIController.setUp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类__init__.TestWSGIController
的用法示例。
在下文中一共展示了TestWSGIController.setUp方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
TestWSGIController.setUp(self)
app = ControllerWrap(ProtectedController)
app = SetupCacheGlobal(app, self.environ, setup_session=True)
app = SessionMiddleware(app, {}, data_dir=session_dir)
app = RegistryManager(app)
self.app = TestApp(app)
示例2: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
from pylons.testutil import ControllerWrap, SetupCacheGlobal
ValidatingController = make_validating_controller()
TestWSGIController.setUp(self)
app = SetupCacheGlobal(ControllerWrap(ValidatingController),
self.environ)
app = RegistryManager(app)
self.app = TestApp(app)
示例3: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
from pylons.testutil import ControllerWrap, SetupCacheGlobal
ProtectedController = make_protected()
TestWSGIController.setUp(self)
app = ControllerWrap(ProtectedController)
app = SetupCacheGlobal(app, self.environ, setup_session=True)
app = SessionMiddleware(app, {}, data_dir=session_dir)
app = RegistryManager(app)
self.app = TestApp(app)
示例4: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
TestWSGIController.setUp(self)
from routes import Mapper
map = Mapper()
map.connect("/:action/:id")
map.connect("/:controller/:action/:id")
app = ControllerWrap(HttpsController)
app = SetupCacheGlobal(app, self.environ, setup_cache=False)
app = RoutesMiddleware(app, map)
app = RegistryManager(app)
self.app = TestApp(app)
示例5: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
from pylons.testutil import ControllerWrap, SetupCacheGlobal
HttpsController = make_httpscontroller()
TestWSGIController.setUp(self)
from routes import Mapper
map = Mapper()
map.connect('/:action')
map.connect('/:action/:id')
map.connect('/:controller/:action/:id')
map.connect('/:controller/:action')
app = ControllerWrap(HttpsController)
app = SetupCacheGlobal(app, self.environ, setup_cache=False)
app = RoutesMiddleware(app, map)
app = RegistryManager(app)
self.app = TestApp(app)
示例6: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
TestWSGIController.setUp(self)
self.baseenviron.update(self.environ)
warnings.simplefilter('error', DeprecationWarning)
示例7: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
TestWSGIController.setUp(self)
self.baseenviron.update(self.environ)
示例8: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
TestWSGIController.setUp(self)
app = SetupCacheGlobal(ControllerWrap(ValidatingController),
self.environ)
app = RegistryManager(app)
self.app = TestApp(app)
示例9: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
self.app, environ = make_cache_controller_app()
TestWSGIController.setUp(self)
environ.update(self.environ)
warnings.simplefilter('error', Warning)
示例10: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
self.app = app
TestWSGIController.setUp(self)
environ.update(self.environ)
示例11: setUp
# 需要导入模块: from __init__ import TestWSGIController [as 别名]
# 或者: from __init__.TestWSGIController import setUp [as 别名]
def setUp(self):
app, bad_app = make_cache_controller()
self.app = app
TestWSGIController.setUp(self)
environ.update(self.environ)