Lines Matching defs:two
16 def two(self): pass
257 self.assertEqual(call('foo', 'bar', one=3, two=4),
258 ('', ('foo', 'bar'), {'one': 3, 'two': 4}))
345 args = _Call(((1, 2), {'a': 3}), two=True)
389 mock.two()
390 mock.two.assert_called_with()
392 mock.two.assert_called_with, 3)
393 self.assertRaises(TypeError, mock.two, 1)
580 mock.two()
583 expected = [call.one(1, 2), call.two(), call.three(3)]
587 mock.attr.two()
591 [call.attr.one(1, 2), call.attr.two(), call.attr.three(3)]