當前位置: 首頁>>代碼示例>>Python>>正文


Python controller.TestController類代碼示例

本文整理匯總了Python中alluratest.controller.TestController的典型用法代碼示例。如果您正苦於以下問題:Python TestController類的具體用法?Python TestController怎麽用?Python TestController使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了TestController類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: setUp

 def setUp(self):
     TestController.setUp(self)
     c.user = M.User.by_username('test-admin')
     self.app.get('/discussion/')
     r = self.app.get('/admin/discussion/forums')
     r.forms[1]['add_forum.shortname'] = 'testforum'
     r.forms[1]['add_forum.name'] = 'Test Forum'
     r.forms[1].submit()
     r = self.app.get('/admin/discussion/forums')
     assert 'testforum' in r
     self.email_address=c.user.email_addresses[0]
     h.set_context('test', 'discussion', neighborhood='Projects')
     self.forum = FM.Forum.query.get(shortname='testforum')
開發者ID:jekatgithub,項目名稱:incubator-allura,代碼行數:13,代碼來源:test_forum.py

示例2: setUp

 def setUp(self):
     TestController.setUp(self)
     self.setup_with_tools()
開發者ID:pombredanne,項目名稱:SourceForge-Allura,代碼行數:3,代碼來源:test_controllers.py

示例3: setUp

 def setUp(self):
     TestController.setUp(self)
     self.app.get('/discussion/')
開發者ID:AsylumCorp,項目名稱:incubator-allura,代碼行數:3,代碼來源:test_forum_admin.py


注:本文中的alluratest.controller.TestController類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。