Robert Collins added the comment:

Hey, feel free to +nosy me on unittest things :). Julian pinged me on IRC about 
this - Jml and I would be delight to prepare a patchset for assertThat for 
unittest and as much of the core of Matchers as makes sense. The bare core can 
come in without any of the things that Michael is concerned about vis-a-vis 
unneeded complexity in testtools [e.g. nothing about arbitrary attachments is 
needed].

We can state from experience - both ours and users that have adopted it - that 
the decoupling assertThat brings is very effective at ending the 
forced-hierarchy-or-mixin mess that self-homed assertions brings. A while back 
we rewrote the entire core of testtools own assertions to be Matcher based :).

https://testtools.readthedocs.org/en/latest/for-test-authors.html#matchers has 
the documentation on the Matcher protocol and what it looks like for users.

Structurally, we decouple the raising of AssertionError from the act of 
determining whether a particular condition is met - this frees one from needing 
to have a reference to a test case to honour failureException, and from needing 
to subclass to share condition logic - unrelated test classes can how share 
condition logic by sharing a matcher definition.

It also lends itself rather naturally to higher order definitions of matchers, 
as matchers are now standalone objects with no required connection to a test 
case : you can curry and compose matchers easily.

We make matchers have a nice __str__, so that their structure can be printed 
out by assertThat when an error has occurred even if they have been curried or 
compose or defined much earlier.

So - is there some interest in this? If so, I can put together a patchset with 
just the core, and let you see what it looks like.

----------
nosy: +rbcollins

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18054>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to