本文整理匯總了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)