Missing GEM causes misleading “use_transactional_fixtures” error
Posted in Ruby on Rails on October 31st, 2006 by leodirac – 1 CommentA lot of people out there on the net are getting frustrated by this error message coming out of their unit tests: undefined method `use_transactional_fixtures=’ for Test::Unit::TestCase:Class (NoMethodError) I was recently getting this in my unit tests on my continuous integration server. The problem is that this has message nothing to do with the actual error. Rake has this bad habit of silently swallowing useful errors. Sometimes is just stops without saying anything, and other times it gives a completely incorrect message like this one. In my case, the problem was a missing gem on the continuous integration server. I’ve…
...full article