diff options
author | Julia López <julialopez@gmail.com> | 2016-12-21 17:08:46 +0100 |
---|---|---|
committer | Julia López <julialopez@gmail.com> | 2016-12-29 20:46:30 +0100 |
commit | f28d073a394c0575dac5505e2c1c8cafc66034c4 (patch) | |
tree | 9b1c374757715214e77854584888a9ac2219631a /actionpack/lib/action_dispatch | |
parent | 8c547838446a604d7bf4a93340767cfcb1bbe2ce (diff) | |
download | rails-f28d073a394c0575dac5505e2c1c8cafc66034c4.tar.gz rails-f28d073a394c0575dac5505e2c1c8cafc66034c4.tar.bz2 rails-f28d073a394c0575dac5505e2c1c8cafc66034c4.zip |
fix with_routing when testing api only controllers
Diffstat (limited to 'actionpack/lib/action_dispatch')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/routing.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/routing.rb b/actionpack/lib/action_dispatch/testing/assertions/routing.rb index 454dcb9307..37c1ca02b6 100644 --- a/actionpack/lib/action_dispatch/testing/assertions/routing.rb +++ b/actionpack/lib/action_dispatch/testing/assertions/routing.rb @@ -152,8 +152,11 @@ module ActionDispatch _routes = @routes @controller.singleton_class.include(_routes.url_helpers) - @controller.view_context_class = Class.new(@controller.view_context_class) do - include _routes.url_helpers + + if @controller.respond_to? :view_context_class + @controller.view_context_class = Class.new(@controller.view_context_class) do + include _routes.url_helpers + end end end yield @routes |