This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rbcollins
Recipients rbcollins
Date 2015-07-17.07:55:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437119760.12.0.974021198911.issue24651@psf.upfronthosting.co.za>
In-reply-to
Content
We had a discussion on the list sparked by the assret checking, and in it I proposed that the API would be cleaner if the asserts were module functions.

e.g. rather than::

 a_mock.assert_called_with(Foo)


 assert_called_with(a_mock, Foo)

Michael has objected to this saying that the current structure is part of mock's success - but I'm filing this since a number of other core devs seemed to really like the idea. We can discuss here and if the consensus is that it wouldn't be an improvement - thats fine. OTOH if the consensus is that it is an improvement, this can serve as a memo to someone to implement the new API.
History
Date User Action Args
2015-07-17 07:56:00rbcollinssetrecipients: + rbcollins
2015-07-17 07:56:00rbcollinssetmessageid: <1437119760.12.0.974021198911.issue24651@psf.upfronthosting.co.za>
2015-07-17 07:56:00rbcollinslinkissue24651 messages
2015-07-17 07:55:59rbcollinscreate