Hello, I have a pre-written Rails app for handling subscription based payments that is currently covered with an Rspec test suite. I'm trying to merge it into a Rails app that is covered using the Shoulda test suite.
I'd really hate to have to rewrite all the tests into Shoulda compatible matchers manually, so I was wondering if there may be an easier way to do this. I'm not very experienced with either testing framework, so I'm trying to make a plan on the best way to start.
I've heard that Shoulda has some Rspec compatible matchers, but do they cover every rspec matcher? Could it really be as easy as that?
Has anyone had any experience doing something like this, and how much of a problem was it?