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


Python Client.name方法代碼示例

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


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

示例1: test_name_change

# 需要導入模塊: from b3.clients import Client [as 別名]
# 或者: from b3.clients.Client import name [as 別名]
 def test_name_change(self):
     c = Client(console=b3.console, authed=True)
     c.name = "cucurb"
     self.assertEqual(c.name, "cucurb")
     b3.console.queueEvent.assert_called()
     args = b3.console.queueEvent.call_args
     eventraised = args[0][0]
     self.assertEquals(eventraised.type, b3.events.EVT_CLIENT_NAME_CHANGE)
     self.assertEquals(eventraised.data, 'cucurb')
開發者ID:EHDSpoon,項目名稱:big-brother-bot,代碼行數:11,代碼來源:test_Client.py

示例2: test_makeAlias_new

# 需要導入模塊: from b3.clients import Client [as 別名]
# 或者: from b3.clients.Client import name [as 別名]
 def test_makeAlias_new(self):
     c = Client(console=b3.console)
     c.id = 123
     c.name = "foo"
     b3.console.storage.getClientAlias.side_effect = KeyError()
     c.makeAlias("bar")
     self.assertEquals(b3.console.storage.getClientAlias.call_count, 1)
     alias = b3.console.storage.getClientAlias.call_args[0][0]
     self.assertIsInstance(alias, b3.clients.Alias)
     self.assertEqual(alias.alias, "bar")
     self.assertEqual(alias.numUsed, 1)
開發者ID:EHDSpoon,項目名稱:big-brother-bot,代碼行數:13,代碼來源:test_Client.py

示例3: test_makeAlias_existing

# 需要導入模塊: from b3.clients import Client [as 別名]
# 或者: from b3.clients.Client import name [as 別名]
 def test_makeAlias_existing(self):
     c = Client(console=b3.console)
     c.id = 123
     c.name = "foo"
     aliasFoo = b3.clients.Alias()
     aliasFoo.alias = "foo"
     aliasFoo.clientId = c.id
     aliasFoo.numUsed = 48
     b3.console.storage.getClientAlias.side_effect = lambda x: aliasFoo
     c.makeAlias("whatever")
     self.assertEquals(b3.console.storage.getClientAlias.call_count, 1)
     self.assertIsInstance(aliasFoo, b3.clients.Alias)
     self.assertEqual(aliasFoo.alias, "foo")
     self.assertEqual(aliasFoo.numUsed, 49)
開發者ID:EHDSpoon,項目名稱:big-brother-bot,代碼行數:16,代碼來源:test_Client.py


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