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

Était-ce utile?

La solution

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

Autres conseils

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top