Delete concerns_executes_block_in_context_of_current_mapper test

This commit is contained in:
Nikita Vasilevsky 2022-02-06 14:45:16 +00:00 committed by GitHub
parent 91f80a899f
commit e8076efd80
1 changed files with 0 additions and 10 deletions

View File

@ -111,14 +111,4 @@ class RoutingConcernsTest < ActionDispatch::IntegrationTest
assert_equal "No concern named foo was found!", e.message
end
def test_concerns_executes_block_in_context_of_current_mapper
mapper = ActionDispatch::Routing::Mapper.new(ActionDispatch::Routing::RouteSet.new)
mapper.concern :test_concern do
resources :things
return self
end
assert_equal mapper, mapper.concerns(:test_concern)
end
end