forked from rspec/rspec-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouting_example_group.rb
63 lines (55 loc) · 1.7 KB
/
routing_example_group.rb
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
require "action_dispatch/testing/assertions/routing"
module RSpec
module Rails
# @private
RoutingAssertionDelegator = RSpec::Rails::AssertionDelegator.new(
ActionDispatch::Assertions::RoutingAssertions
)
# @api public
# Container module for routing spec functionality.
module RoutingExampleGroup
extend ActiveSupport::Concern
include RSpec::Rails::RailsExampleGroup
include RSpec::Rails::Matchers::RoutingMatchers
include RSpec::Rails::Matchers::RoutingMatchers::RouteHelpers
include RSpec::Rails::RoutingAssertionDelegator
# Class-level DSL for route specs.
module ClassMethods
# Specifies the routeset that will be used for the example group. This
# is most useful when testing Rails engines.
#
# @example
# describe MyEngine::PostsController do
# routes { MyEngine::Engine.routes }
#
# it "routes posts#index" do
# expect(:get => "/posts").to
# route_to(:controller => "my_engine/posts", :action => "index")
# end
# end
def routes
before do
self.routes = yield
end
end
end
included do
before do
self.routes = ::Rails.application.routes
end
end
# @!attribute [r]
# @private
attr_reader :routes
# @private
def routes=(routes)
@routes = routes
assertion_instance.instance_variable_set(:@routes, routes)
end
private
def method_missing(m, *args, &block)
routes.url_helpers.respond_to?(m) ? routes.url_helpers.send(m, *args) : super
end
end
end
end