Anyone know how to get around this? On OSX, trying to get RSpec running with Rails 3.0.7. Full details at: https://gist.github.com/1017044
it \"renders but
In Rspec 3.x the spec type is not automatically inferred from a file location, and you must manually set it, add this to the spec_helper.rb
RSpec.configure do |config| config.infer_spec_type_from_file_location! end
Rspec upgrade