May 2010
2 posts
4 tags
Mocha doesn't play nice with Rails 3 & Bundler
Using mocha with edge beta Rails 3, I added Mocha to the Gemfile
gem "mocha"
All was going swimmingly until I ran into a problem. I reduced it to:
The result of running this test was:
#test_mock_doesnt_fail should fail, but doesn’t. Changing the require lines at the top of the file to not load Rails and only load Mocha (+Rubygems+Test::Unit):
require "rubygems"
require...