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


Python CouchBaseBackend.set方法代碼示例

本文整理匯總了Python中celery.backends.couchbase.CouchBaseBackend.set方法的典型用法代碼示例。如果您正苦於以下問題:Python CouchBaseBackend.set方法的具體用法?Python CouchBaseBackend.set怎麽用?Python CouchBaseBackend.set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在celery.backends.couchbase.CouchBaseBackend的用法示例。


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

示例1: test_set

# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import set [as 別名]
 def test_set(self):
     self.app.conf.couchbase_backend_settings = None
     x = CouchBaseBackend(app=self.app)
     x._connection = MagicMock()
     x._connection.set = MagicMock()
     # should return None
     self.assertIsNone(x.set(sentinel.key, sentinel.value))
開發者ID:EdwardBetts,項目名稱:celery,代碼行數:9,代碼來源:test_couchbase.py

示例2: test_set

# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import set [as 別名]
    def test_set(self):
        """test_set

        CouchBaseBackend.set should return None and take two params
        db conn to couchbase is mocked.

        """
        self.app.conf.CELERY_COUCHBASE_BACKEND_SETTINGS = None
        x = CouchBaseBackend(app=self.app)
        x._connection = MagicMock()
        x._connection.set = MagicMock()
        # should return None
        self.assertIsNone(x.set(sentinel.key, sentinel.value))
開發者ID:1995rishi,項目名稱:flaskmap,代碼行數:15,代碼來源:test_couchbase.py

示例3: test_set

# 需要導入模塊: from celery.backends.couchbase import CouchBaseBackend [as 別名]
# 或者: from celery.backends.couchbase.CouchBaseBackend import set [as 別名]
    def test_set(self):
        """
        Test set method.

        CouchBaseBackend.set should return None and take two params
        db conn to couchbase is mocked.
        """
        self.app.conf.couchbase_backend_settings = None
        x = CouchBaseBackend(app=self.app)
        x._connection = MagicMock()
        x._connection.set = MagicMock()
        # should return None
        self.assertIsNone(x.set(sentinel.key, sentinel.value))
開發者ID:AlJohri,項目名稱:celery,代碼行數:15,代碼來源:test_couchbase.py


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