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


Python testing.Harness類代碼示例

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


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

示例1: setUp

    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant('alice', balance=100)
        self.client.POST('/alice/communities.json', {'do': 'join:something'},
                         auth_as=self.alice, xhr=True)
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:7,代碼來源:test_communities.py

示例2: setUp

    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant('alice', balance=100)
        c = self.alice.create_community('C++')
        self.alice.upsert_community_membership(True, c.id)
開發者ID:devmiyax,項目名稱:liberapay.com,代碼行數:7,代碼來源:test_communities.py

示例3: setUp

    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant('alice', balance=100)
        c = self.alice.create_community('something')
        self.alice.update_community_status('memberships', True, c.id)
開發者ID:Calinou,項目名稱:liberapay.com,代碼行數:7,代碼來源:test_communities.py

示例4: setUp

    def setUp(self):
        Harness.setUp(self)

        # Alice joins a community.
        self.alice = self.make_participant('alice', balance=100)
        self.client.POST('/alice/communities.json', {'do': 'join:something'},
                         auth_as=self.alice, HTTP_X_REQUESTED_WITH=b'XMLHttpRequest')
開發者ID:Changaco,項目名稱:liberapay.com,代碼行數:7,代碼來源:test_communities.py

示例5: setUp

 def setUp(self):
     Harness.setUp(self)
     self.david = self.make_participant(
         "david",
         is_suspicious=False,
         mangopay_user_id=self.david_id,
         mangopay_wallet_id=self.david_wallet_id,
         email="[email protected]",
     )
     self.janet = self.make_participant(
         "janet",
         is_suspicious=False,
         mangopay_user_id=self.janet_id,
         mangopay_wallet_id=self.janet_wallet_id,
         email="[email protected]",
     )
     self.janet_route = ExchangeRoute.insert(self.janet, "mango-cc", self.card_id)
     self.homer = self.make_participant(
         "homer",
         is_suspicious=False,
         mangopay_user_id=self.homer_id,
         mangopay_wallet_id=self.homer_wallet_id,
         email="[email protected]",
     )
     self.homer_route = ExchangeRoute.insert(self.homer, "mango-ba", self.bank_account.Id)
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:25,代碼來源:mangopay.py

示例6: setUp

 def setUp(self):
     Harness.setUp(self)
     self.mailer_patcher = mock.patch.object(Participant._mailer.messages, 'send')
     self.mailer = self.mailer_patcher.start()
     self.addCleanup(self.mailer_patcher.stop)
     sleep_patcher = mock.patch('liberapay.models.participant.sleep')
     sleep_patcher.start()
     self.addCleanup(sleep_patcher.stop)
開發者ID:Changaco,項目名稱:liberapay.com,代碼行數:8,代碼來源:emails.py

示例7: setUp

    def setUp(self):
        Harness.setUp(self)

        # Grab configuration from the environment, storing for later.
        env = wireup.env()
        self.environ = env.environ

        # Change env, doesn't change self.environ.
        env.canonical_scheme = 'https'
        env.canonical_host = 'example.com'

        wireup.canonical(env)
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:12,代碼來源:test_hooks.py

示例8: setUp

 def setUp(self):
     Harness.setUp(self)
     self.david = self.make_participant(
         'david', mangopay_user_id=self.david_id,
         mangopay_wallet_id=self.david_wallet_id, email='[email protected]'
     )
     self.janet = self.make_participant(
         'janet', mangopay_user_id=self.janet_id,
         mangopay_wallet_id=self.janet_wallet_id, email='[email protected]'
     )
     self.janet_route = ExchangeRoute.insert(self.janet, 'mango-cc', self.card_id)
     self.homer = self.make_participant(
         'homer', mangopay_user_id=self.homer_id,
         mangopay_wallet_id=self.homer_wallet_id, email='[email protected]'
     )
     self.homer_route = ExchangeRoute.insert(self.homer, 'mango-ba', self.bank_account.Id)
開發者ID:Calinou,項目名稱:liberapay.com,代碼行數:16,代碼來源:mangopay.py

示例9: setUp

 def setUp(self):
     Harness.setUp(self)
     self.team = self.make_participant("team", kind='group')
     self.alice = self.make_participant("alice")
開發者ID:Changaco,項目名稱:liberapay.com,代碼行數:4,代碼來源:test_membername_json.py

示例10: setUp

 def setUp(self):
     Harness.setUp(self)
     self.alice = self.make_participant('alice')
     self.bob = self.make_participant('bob')
開發者ID:liberapay,項目名稱:liberapay.com,代碼行數:4,代碼來源:test_newsletters.py

示例11: setUp

 def setUp(self):
     Harness.setUp(self)
     make_history(self)
開發者ID:CryptArc,項目名稱:liberapay.com,代碼行數:3,代碼來源:test_history.py

示例12: setUp

 def setUp(self):
     Harness.setUp(self)
     self.stub = self.make_stub()  # Our protagonist
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:3,代碼來源:test_participant.py

示例13: setUp

 def setUp(self):
     Harness.setUp(self)
     self.client.website.canonical_scheme = 'https'
     self.client.website.canonical_host = 'example.com'
開發者ID:fracolo,項目名稱:liberapay.com,代碼行數:4,代碼來源:test_hooks.py

示例14: setUp

 def setUp(self):
     Harness.setUp(self)
     self.bar = self.make_participant('bar', is_admin=True)
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:3,代碼來源:test_is_suspicious.py

示例15: tearDown

 def tearDown(self):
     Harness.tearDown(self)
     reset = Environment(CANONICAL_SCHEME=unicode, CANONICAL_HOST=unicode, environ=self.environ)
     wireup.canonical(reset)
開發者ID:kthurimella,項目名稱:liberapay.com,代碼行數:4,代碼來源:test_hooks.py


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