本文整理汇总了Python中b3.fake.FakeClient.message_history方法的典型用法代码示例。如果您正苦于以下问题:Python FakeClient.message_history方法的具体用法?Python FakeClient.message_history怎么用?Python FakeClient.message_history使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类b3.fake.FakeClient
的用法示例。
在下文中一共展示了FakeClient.message_history方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_forgivelist
# 需要导入模块: from b3.fake import FakeClient [as 别名]
# 或者: from b3.fake.FakeClient import message_history [as 别名]
def test_forgivelist(self, timer_patcher):
Tk_functional_test.p._round_grace = 0
joe = FakeClient(fakeConsole, name="Joe", exactName="Joe", guid="joeguid", groupBits=1, team=b3.TEAM_RED)
mike = FakeClient(fakeConsole, name="Mike", exactName="Mike", guid="mikeguid", groupBits=1, team=b3.TEAM_RED)
bill = FakeClient(fakeConsole, name="Bill", exactName="Bill", guid="billguid", groupBits=1, team=b3.TEAM_RED)
joe.connects(0)
mike.connects(1)
bill.connects(2)
joe.message_history = []
joe.says("!forgivelist")
self.assertEqual("no one to forgive", joe.message_history[0])
mike.damages(joe, points=14)
joe.message_history = []
joe.says("!forgivelist")
self.assertIn("Mike [14]", joe.message_history[0])
bill.damages(joe, points=84)
joe.message_history = []
joe.says("!forgivelist")
self.assertIn("Mike [14]", joe.message_history[0])
self.assertIn("Bill [84]", joe.message_history[0])