rails/actionpack/test/controller
2008-03-23 01:48:17 +00:00
..
controller_fixtures New routes implementation. Simpler, faster, easier to understand. The published API for config/routes.rb is unchanged, but nearly everything else is different, so expect breakage in plugins and libs that try to fiddle with routes. 2006-06-01 15:42:08 +00:00
deprecation require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
html-scanner Ruby 1.9 compat: check dom equality 2008-01-07 08:09:06 +00:00
session Ruby 1.9 compat: cookie store delete sets nil value instead of empty string 2008-01-07 08:12:03 +00:00
action_pack_assertions_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
addresses_render_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
assert_select_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
base_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
benchmark_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
caching_test.rb Fix a few caching errors, expose a case thats still not working (ref #107330 [catfish] 2008-01-12 01:19:46 +00:00
capture_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
cgi_test.rb Don't split cookies on comma also. References r8505. 2008-02-02 02:55:44 +00:00
components_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
content_type_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
cookie_test.rb remove support for ampersand-delimited cookie values 2008-02-12 21:45:39 +00:00
custom_handler_test.rb Moved template handlers related code from ActionView::Base to ActionView::Template 2008-03-05 02:03:24 +00:00
dispatcher_test.rb Refactor filters to use Active Support callbacks. Closes #11235. 2008-03-18 17:56:05 +00:00
fake_controllers.rb Add timing test for large restful route recognition. References #10835 [oleganza] 2008-01-19 05:24:44 +00:00
fake_models.rb Introduce fake_models.rb to avoid platform-specific code. [mpalmer] Closes #8714 2007-07-17 09:44:03 +00:00
filter_params_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
filters_test.rb Fix regression from filter refactoring where re-adding a skipped filter resulted in it being called twice. [rick] 2008-03-23 01:48:17 +00:00
flash_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
header_test.rb Provide a nicer way to access headers. request.headers["Content-Type"] instead of request.headers["HTTP_CONTENT_TYPE"] [Koz] 2008-01-11 06:39:56 +00:00
helper_test.rb Remove unused ActionController::Base.template_class. Closes #10787 2008-03-05 12:12:17 +00:00
http_authentication_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
integration_test.rb use stubbing instead of monkeypatching to stop tests from interfering with one another. Closes #11163 [RubyRedRick] 2008-02-19 21:43:13 +00:00
integration_upload_test.rb Allow file uploads in Integration Tests. Closes #11091 [RubyRedRick] 2008-03-03 06:42:24 +00:00
layout_test.rb Moved template handlers related code from ActionView::Base to ActionView::Template 2008-03-05 02:03:24 +00:00
mime_responds_test.rb Make MimeResponds::Responder#any work without explicit types. Closes #11140 [jaw6] 2008-03-07 11:17:05 +00:00
mime_type_test.rb Ensure mime types can be compared with symbols. Closes #10796 [bscofield] 2008-01-20 22:55:25 +00:00
new_render_test.rb Refactor partial rendering into a PartialTemplate class. [Pratik] 2008-03-03 04:01:35 +00:00
polymorphic_routes_test.rb Fixed that polymorphic routes would modify the input array (closes #11363) [thomas.lee] 2008-03-17 23:45:42 +00:00
record_identifier_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
redirect_test.rb don't misbehave when redirecting to nil. Closes #10272 [farleyknight] 2008-01-12 03:09:39 +00:00
render_test.rb Make sure render :update support the options hash. Closes #11088 [ernesto.jimenez] 2008-02-12 22:42:36 +00:00
request_forgery_protection_test.rb Don't append the forgery token to an ajax request if it's serializing a form, prevents duplicate tokens. Closes #10684 [macournoyer] 2008-01-08 21:17:08 +00:00
request_test.rb Fix more obscure nested parameter hash parsing bug. Closes #10797 [thomas.lee] 2008-03-13 03:22:25 +00:00
rescue_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
resources_test.rb Introduce map.resources :cards, :as => 'tarjetas' to use a custom resource name in the URL: cards_path == '/tarjetas'. Closes #10578. 2008-02-02 05:57:16 +00:00
routing_test.rb Fix an edge case with extra periods in Routing.normalize_paths. Closes #11337 [cavalle, veejar] 2008-03-21 22:44:04 +00:00
selector_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
send_file_test.rb Introduce send_file :x_sendfile => true to send an X-Sendfile response header. 2008-01-11 22:07:04 +00:00
session_fixation_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
session_management_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
test_test.rb Allow using named routes in ActionController::TestCase before any request has been made. Closes #11273 [alloy] 2008-03-08 12:56:41 +00:00
url_rewriter_test.rb Add :trailing_slash option to UrlWriter. Closes #9117 [juanjo.bazan] 2008-02-18 00:42:06 +00:00
verification_test.rb require abstract_unit directly since test is in load path 2008-01-05 13:32:06 +00:00
view_paths_test.rb Reapply the TemplateFinder first applied in [8669] then reverted in [8676]. Closes #10800 [lifofifo] 2008-01-21 20:45:04 +00:00
webservice_test.rb Fix Hash#from_xml with Type records. Closes #9242 [Juanjo Bazan, Isaac Feliu] 2008-02-27 23:11:08 +00:00