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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
Feature: `be_routable` matcher
The `be_routable` matcher is best used with `should_not` to specify that a
given route should not be routable. It is available in routing specs (in
spec/routing) and controller specs (in spec/controllers).
Scenario: Specify routeable route should not be routable (fails)
Given a file named "spec/routing/widgets_routing_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe "routes for Widgets", type: :routing do
it "does not route to widgets" do
expect(:get => "/widgets").not_to be_routable
end
end
"""
When I run `rspec spec/routing/widgets_routing_spec.rb`
Then the output should contain "1 example, 1 failure"
Scenario: Specify non-routeable route should not be routable (passes)
Given a file named "spec/routing/widgets_routing_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe "routes for Widgets", type: :routing do
it "does not route to widgets/foo/bar" do
expect(:get => "/widgets/foo/bar").not_to be_routable
end
end
"""
When I run `rspec spec/routing/widgets_routing_spec.rb`
Then the examples should all pass
Scenario: Specify routeable route should be routable (passes)
Given a file named "spec/routing/widgets_routing_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe "routes for Widgets", type: :routing do
it "routes to /widgets" do
expect(:get => "/widgets").to be_routable
end
end
"""
When I run `rspec spec/routing/widgets_routing_spec.rb`
Then the examples should all pass
Scenario: Specify non-routeable route should be routable (fails)
Given a file named "spec/routing/widgets_routing_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe "routes for Widgets", type: :routing do
it "routes to widgets/foo/bar" do
expect(:get => "/widgets/foo/bar").to be_routable
end
end
"""
When I run `rspec spec/routing/widgets_routing_spec.rb`
Then the output should contain "1 example, 1 failure"
Scenario: Use `be_routable` in a controller spec
Given a file named "spec/controllers/widgets_controller_spec.rb" with:
"""ruby
require "rails_helper"
RSpec.describe WidgetsController, type: :controller do
it "routes to /widgets" do
expect(:get => "/widgets").to be_routable
end
end
"""
When I run `rspec spec/controllers/widgets_controller_spec.rb`
Then the examples should all pass
|