1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/test/controller
José Valim 9a93844aba Add :only and :except to controllers MiddlewareStack. This allows
you to do the following:

  class PostsController < ApplicationController
    use AutheMiddleware, :except => [:index, :show]
  end
2010-05-30 15:53:14 +02:00
..
controller_fixtures
deprecation
new_base Add :only and :except to controllers MiddlewareStack. This allows 2010-05-30 15:53:14 +02:00
request
action_pack_assertions_test.rb move assert_template tests to their own test case [#4501 state:resolved] 2010-05-03 13:46:34 +02:00
addresses_render_test.rb
assert_select_test.rb Revert "Moved encoding work in progress to a feature branch." 2010-05-17 19:41:54 +04:00
base_test.rb Tests method_missing to raise NameError. [#2522 state:resolved] 2010-03-27 00:26:44 -07:00
caching_test.rb ActionCachingTestController rescues from all exceptions. Making sure that all the tests check for valid response. [#4468 state:resolved] 2010-04-29 12:48:34 +02:00
capture_test.rb Revert "Moved encoding work in progress to a feature branch." 2010-05-17 19:41:54 +04:00
content_type_test.rb ActionController::Base.use_accept_header is not actually used anymore, so let's deprecate it. 2010-03-03 21:24:00 -08:00
cookie_test.rb Simplify cookie_store by simply relying on cookies.signed. 2010-05-18 02:05:20 +02:00
dispatcher_test.rb
filters_test.rb Use better assertion methods for testing 2010-05-19 10:18:36 +02:00
flash_test.rb Simplify cookie_store by simply relying on cookies.signed. 2010-05-18 02:05:20 +02:00
helper_test.rb
http_basic_authentication_test.rb
http_digest_authentication_test.rb Rename config.cookie_secret to config.secret_token and pass it as configuration in request.env. This is another step forward removing global configuration. 2010-04-05 12:00:24 +02:00
http_token_authentication_test.rb add HTTP Token Authorization support to complement Basic and Digest Authorization. 2010-04-30 07:46:30 -07:00
integration_test.rb Use assert_respond_to because it has better error messaging 2010-05-18 02:12:06 +02:00
layout_test.rb move FixtureResolver to a file that is accessible outside Rails' own tests 2010-05-02 22:45:54 +02:00
localized_templates_test.rb Fixed that default locale templates should be used if the current locale template is missing [DHH] 2010-04-08 18:11:26 -07:00
log_subscriber_test.rb Make perform_caching work again, with the tests passing and backward compatible 2010-04-15 18:25:08 -03:00
mime_responds_test.rb Fix a bug where responders were not working properly on method override. 2010-05-24 13:12:40 +02:00
output_escaping_test.rb
record_identifier_test.rb
redirect_test.rb Require persisted? in ActiveModel::Lint and remove new_record? and destroyed? methods. ActionPack does not care if the resource is new or if it was destroyed, it cares only if it's persisted somewhere or not. 2010-02-21 11:12:14 +01:00
render_js_test.rb
render_json_test.rb Always downstream given options in :json, :xml and :js renderers and add tests for it. 2010-04-22 12:12:38 +02:00
render_other_test.rb
render_test.rb Revert "Moved encoding work in progress to a feature branch." 2010-05-17 19:41:54 +04:00
render_xml_test.rb Fix render :xml test (ht Simo Niemelä) 2010-04-24 11:48:47 +02:00
request_forgery_protection_test.rb
rescue_test.rb RouteSet does not raise ActionController::RoutingError when no routes match anymore. Instead, it follows the X-Cascade convention. ShowExceptions checks for X-Cascade so that the routing error page can still be displayed. 2010-04-30 16:40:42 -07:00
resources_test.rb Consistent routing language 2010-03-30 14:05:42 -05:00
routing_test.rb 1.9 seems to have a bug involving cloned classes and super. Fix it by not cloning (and instead creating classes on demand). The 1.9 bug should be investigated. 2010-02-26 18:25:56 -08:00
selector_test.rb
send_file_test.rb Use assert_respond_to because it has better error messaging 2010-05-18 02:12:06 +02:00
test_test.rb access assigns as a method or hash, with strings or symbols [#4431 state:resolved] 2010-04-17 15:59:10 -04:00
url_for_test.rb Make ActionDispatch url_for use HWIA symbolize_keys 2010-04-22 09:06:55 -07:00
url_rewriter_test.rb Consistent routing language 2010-03-30 14:05:42 -05:00
view_paths_test.rb Fixes test ordering bug (ht: evan) 2010-03-04 12:21:12 -08:00
webservice_test.rb Consistent routing language 2010-03-30 14:05:42 -05:00