本文整理汇总了Python中pessoa.Pessoa.atirar_o_pau_no方法的典型用法代码示例。如果您正苦于以下问题:Python Pessoa.atirar_o_pau_no方法的具体用法?Python Pessoa.atirar_o_pau_no怎么用?Python Pessoa.atirar_o_pau_no使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pessoa.Pessoa
的用法示例。
在下文中一共展示了Pessoa.atirar_o_pau_no方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: MusicaSpec
# 需要导入模块: from pessoa import Pessoa [as 别名]
# 或者: from pessoa.Pessoa import atirar_o_pau_no [as 别名]
class MusicaSpec(unittest.TestCase):
def setUp(self):
self.eu = Pessoa()
self.gato = Gato()
self.dona_chica = Pessoa()
def spec_atirei_o_pau_no_gato_mas_o_gato_nao_morreu(self):
self.eu.atirar_o_pau_no(self.gato)
self.gato.esta_vivo() |should| be(True)
def spec_dona_chica_adimirar_se_com_o_berro_que_o_gato_deu(self):
self.eu.atirar_o_pau_no(self.gato)
self.gato.berrou() |should| be(True)
self.dona_chica.adimirar_se(self.gato) |should| be(True)
示例2: spec_deve_atirar_o_pau
# 需要导入模块: from pessoa import Pessoa [as 别名]
# 或者: from pessoa.Pessoa import atirar_o_pau_no [as 别名]
def spec_deve_atirar_o_pau(self):
eu = Pessoa()
gato = Gato()
eu.atirar_o_pau_no(gato)