Question

Check out the different test runs...what am I doing wrong here? When using ruby 1.9.3, my test suite runs to completion without error but something after is blowing up. Something about test/unit but I'm not even including test/unit in my rails app. I appreciate any help!

http://travis-ci.org/#!/leesmith/decent_authentication

Was it helpful?

Solution

Replace gem shoulda with shoulda-matchers if you're using rspec instead of test::unit.

OTHER TIPS

You need to work on your googling skills ;)

Try adding a :require => false to shoulda in your Gemfile:

gem "shoulda", :require => false

From this discussion.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top