rails/actionpack/test/controller
Nicholas Seckar 2ca6f57f85 Add broken test
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6724 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
2007-05-12 04:46: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 Deprecation: remove deprecated url_for(:symbol, *args) and redirect_to(:symbol, *args) controller methods. Use named routes instead. 2007-03-13 05:44:18 +00:00
html-scanner Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] 2007-02-04 20:04:40 +00:00
session Cookie session store: ensure that new sessions doesn't reuse data from a deleted session in the same request. 2007-03-14 11:33:10 +00:00
action_pack_assertions_test.rb Add ActionController::Routing::Helpers, a module to contain common URL helpers such as polymorphic_url. 2007-05-12 04:18:46 +00:00
addresses_render_test.rb Extract dynamic scaffolding into a plugin. Closes #7700. 2007-03-04 08:35:52 +00:00
assert_select_test.rb Fix gem deprecation warnings, which also means depending on RubyGems 0.9.0+ [Chad Fowler] 2007-02-04 20:44:45 +00:00
base_test.rb Mocha 0.4 mixes in more public instance methods, confusing controller identification of action methods. Closes #7347. 2007-01-24 12:04:08 +00:00
benchmark_test.rb Remove ::Controllers related cruft; fix AP tests 2006-02-26 17:49:09 +00:00
caching_test.rb Allow configuration of the default action cache path for #caches_action calls. [Rick Olson] 2007-03-22 10:12:34 +00:00
capture_test.rb Deprecation: remove deprecated update_element_function, start_form_tag, and end_form_tag. Use RJS and form_tag instead. 2007-03-13 05:24:10 +00:00
cgi_test.rb Added parsing of file type in Hash.xml_in so you can easily do file uploads with base64 from an API [DHH] 2007-04-25 17:25:44 +00:00
components_test.rb Deprecation: remove toplevel components directory and uses_component_template_root. 2007-03-13 04:46:12 +00:00
content_type_test.rb Allow Controllers to have multiple view_paths instead of a single template_root. Closes #2754 [John Long] 2007-02-04 20:47:05 +00:00
cookie_test.rb Modernize cookie testing code, and increase coverage (Heckle++) #7101 [Kevin Clark] 2007-01-17 06:51:59 +00:00
custom_handler_test.rb ActionView: Allow to register a Template handler with a Symbol (dont kill markaby) (closes #4328) [murphy@cYcnus.de] 2006-03-26 21:50:22 +00:00
fake_controllers.rb Don't let arbitrary classes match as controllers 2006-02-04 23:59:37 +00:00
filter_params_test.rb Added ActionController.filter_parameter_logging that makes it easy to remove passwords, credit card numbers, and other sensitive information from being logged when a request is handled #1897 [jeremye@bsa.ca.gov] 2006-04-07 22:26:25 +00:00
filters_test.rb Bug fix for the filter implementation 2007-05-06 04:10:26 +00:00
flash_test.rb Sweep flash when filter chain is halted. Closes #6175. [Caio Chassot <lists@v2studio.com>] 2007-05-06 04:17:01 +00:00
fragment_store_setting_test.rb MemCache store may be given multiple addresses. Closes #2869. 2005-11-16 08:35:31 +00:00
helper_test.rb Added helper(:all) as a way to include all helpers from app/helpers/**/*.rb in ApplicationController [DHH] 2007-02-24 20:31:34 +00:00
http_authentication_test.rb Included the HttpAuthentication plugin as part of core (ActionController::HttpAuthentication::Basic) [DHH] 2007-05-08 05:48:18 +00:00
integration_test.rb Integration tests: introduce methods for other HTTP methods. Closes #6353. 2007-02-22 09:28:10 +00:00
layout_test.rb Allow layouts with extension of .html.erb. Closes #8032 [Josh Knowles] 2007-04-12 17:11:48 +00:00
mime_responds_test.rb The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick] 2007-04-12 20:25:32 +00:00
mime_type_test.rb Improved the handling of broken accept headers 2007-03-28 16:42:21 +00:00
new_render_test.rb Added that render :xml will try to call to_xml if it can [DHH] 2007-04-24 18:29:37 +00:00
raw_post_test.rb Use a consistent load path to avoid double requires. Fix some scattered Ruby warnings. 2007-01-28 07:16:55 +00:00
record_identifier_test.rb Added the first part of Simply Helpful to core. The rest is pending a clean integartion of polymorphic urls [DHH] 2007-04-30 01:17:56 +00:00
redirect_test.rb Revert [6430] since the test is faulty. References #7837, closes #7842. 2007-03-16 13:55:36 +00:00
render_test.rb Added that render :xml will try to call to_xml if it can [DHH] 2007-04-24 18:29:37 +00:00
request_test.rb The default respond_to blocks don't set a specific extension anymore, so that both 'show.rjs' and 'show.js.rjs' will work. [Rick] 2007-04-12 20:25:32 +00:00
rescue_test.rb Added .erb and .builder as preferred aliases to the now deprecated .rhtml and .rxml extensions [Chad Fowler]. This is done to separate the renderer from the mime type. .erb templates are often used to render emails, atom, csv, whatever. So labeling them .rhtml doesn't make too much sense. The same goes for .rxml, which can be used to build everything from HTML to Atom to whatever. .rhtml and .rxml will continue to work until Rails 3.0, though. So this is a slow phasing out. All generators and examples will start using the new aliases, though. 2007-02-20 22:09:12 +00:00
resources_test.rb Added map.namespace to deal with the common situation of admin sections and the like [DHH] 2007-04-27 16:58:36 +00:00
routing_test.rb Add broken test 2007-05-12 04:46:17 +00:00
selector_test.rb Use a consistent load path to avoid double requires. Fix some scattered Ruby warnings. 2007-01-28 07:16:55 +00:00
send_file_test.rb Allow send_file/send_data to use a registered mime type as the :type parameter #7620 [jonathan] 2007-02-25 20:16:58 +00:00
session_management_test.rb session_enabled? works with session :off. Closes #6680. 2007-02-27 06:36:25 +00:00
test_test.rb Expect string response body. 2007-04-24 04:12:11 +00:00
url_rewriter_test.rb Update UrlWriter to accept :anchor parameter. Closes #6771. 2007-05-02 04:40:33 +00:00
verification_test.rb Deprecation: verification with :redirect_to => :named_route shouldn't be deprecated. Closes #7525. 2007-03-14 01:38:41 +00:00
view_paths_test.rb Fix issue with deprecation messing up #template_root= usage. Add #prepend_view_path and #append_view_path to allow modification of a copy of the 2007-02-04 22:27:45 +00:00
webservice_test.rb Removed ill faded xml_node class from codebase. Use XmlSimple instead 2007-04-09 15:33:38 +00:00