From 80dcfd014b27e560f5c4b07ee5ffa98894d8ff63 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Tue, 21 Feb 2017 08:30:36 +0000 Subject: Raise an error if `direct` is inside a scope block --- actionpack/test/dispatch/routing/direct_url_helpers_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/dispatch/routing/direct_url_helpers_test.rb b/actionpack/test/dispatch/routing/direct_url_helpers_test.rb index 56bb7f13b3..24e46758cc 100644 --- a/actionpack/test/dispatch/routing/direct_url_helpers_test.rb +++ b/actionpack/test/dispatch/routing/direct_url_helpers_test.rb @@ -212,4 +212,16 @@ class TestDirectUrlHelpers < ActionDispatch::IntegrationTest end end end + + def test_defining_inside_a_scope_raises_runtime_error + routes = ActionDispatch::Routing::RouteSet.new + + assert_raises RuntimeError do + routes.draw do + namespace :admin do + direct(:rubyonrails) { "http://www.rubyonrails.org" } + end + end + end + end end -- cgit v1.2.3