RSpec generate request spec instead of controller spec
rspec, ruby, ruby-on-rails
Solution
rails g integration_test foo
And you're good to go!
Problem
I'm using rspec-rails but I'd like to change when `rails g controller Blahs` is invoked, I'd like spec/requests/ to be created, instead of spec/controllers/. Thanks!