Methods
- S
- T
Instance Public methods
setup()
Link
test_ensure_url_for_works_as_expected_when_called_with_no_options_if_default_url_options_is_not_set()
Link
test_named_routes_with_path_without_doing_a_request_first()
Link
# File actionpack/test/controller/base_test.rb, line 375 def test_named_routes_with_path_without_doing_a_request_first @controller = EmptyController.new @controller.request = @request with_routing do |set| set.draw do resources :things end assert_equal '/things', @controller.send(:things_path) end end