views:

52

answers:

1

After using shoulda it is very clear that shoulda no longer uses macros (They are all deprecated for the preferred matchers) For example:

should_allow_custom_test

is deprecated for the following:

should allow_custom_test

However all the documentation I can find is for the former macro setup by placing them in the shoulda_macros directory. I thought the same could be accomplished with a custom matcher but shoulda can not find it them.

My matcher I'm using is at http://gist.github.com/613522

How do I include custom matchers into my TestCase's?