Multiple Rails engine rspec controller test not work
问题 I have multiple Rails engines in my Rails 4 beta1 application. I'm installed rspec-rails gem to every engines. And I created my engine following command: rails plugin new store_frontend --dummy-path=spec/dummy -d postgresql --skip-test-unit --mountable In my engine's dummy application I configured database and routes. Here is example routes.rb file: Rails.application.routes.draw do mount StoreFrontend::Engine => "/store" end When I run rspec inside first engine I get following errors: 1)