Lines Matching defs:three
17 def three(self, a=None): pass
395 mock.three()
396 mock.three.assert_called_with()
398 mock.three.assert_called_with, 3)
399 self.assertRaises(TypeError, mock.three, 3, 2)
401 mock.three(1)
402 mock.three.assert_called_with(1)
404 mock.three(a=1)
405 mock.three.assert_called_with(a=1)
581 mock.three(3)
583 expected = [call.one(1, 2), call.two(), call.three(3)]
588 mock.attr.three(3)
591 [call.attr.one(1, 2), call.attr.two(), call.attr.three(3)]