Home | History | Annotate | Download | only in library

Lines Matching full:chained

191 We can use :data:`call` to construct the set of calls in a "chained call" like
206 calls representing the chained calls.
441 Mocking chained calls
444 Mocking chained calls is actually straightforward with mock once you
458 chained calls. Of course another alternative is writing your code in a more
502 Using :attr:`~Mock.mock_calls` we can check the chained call with a single
503 assert. A chained call is several calls in one line of code, so there will be
507 >>> chained = call.get_endpoint('foobar').create_call('spam', 'eggs').start_call()
508 >>> call_list = chained.call_list()
1167 Even though the chained call ``m.one().two().three()`` aren't the only calls that