1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Feature: Engine routes for controllers
Controller specs can specify the routeset that will be used for the example
group. This is most useful when testing Rails engines.
Scenario: Specify engine routes
Given a file named "spec/controllers/widgets_controller_spec.rb" with:
"""ruby
require "rails_helper"
# A very simple Rails engine
module MyEngine
class Engine < ::Rails::Engine
isolate_namespace MyEngine
end
Engine.routes.draw do
resources :widgets, :only => [:show] do
get :random, :on => :collection
end
end
class WidgetsController < ::ActionController::Base
def random
@random_widget = Widget.all.shuffle.first
redirect_to widget_path(@random_widget)
end
def show
@widget = Widget.find(params[:id])
render :text => @widget.name
end
end
end
RSpec.describe MyEngine::WidgetsController, type: :controller do
routes { MyEngine::Engine.routes }
it "redirects to a random widget" do
widget1 = Widget.create!(:name => "Widget 1")
widget2 = Widget.create!(:name => "Widget 2")
get :random
expect(response).to be_redirect
expect(response).to redirect_to(assigns(:random_widget))
end
end
"""
When I run `rspec spec`
Then the examples should all pass
|