rails/actionpack/test/controller
2007-03-13 03:58:22 +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 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
html-scanner Add much-needed html-scanner tests. Fixed CDATA parsing bug. [Rick] 2007-02-04 20:04:40 +00:00
session Cookie store: use OpenSSL::HMAC instead of basic hash. Introduce :secret block and :digest option. 2007-03-03 13:54:54 +00:00
action_pack_assertions_test.rb Deprecation: remove deprecated redirect methods. 2007-03-13 03:58:22 +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 Moved perform_caching test set up into test's setup to fix a dependence fragility (closes #7640) 2007-02-25 19:53:14 +00:00
capture_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
cgi_test.rb Change the query parser to map empty GET params to "" rather than nil. Closes #5694. 2007-01-28 17:00:17 +00:00
components_test.rb uses_component_template_root looks at caller[0] which turns up the deprecation method rather than the controller. Use caller[1] instead. 2006-11-26 01:24:10 +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 make sure filters in subclasses with :only or :except conditions are treated like skip_filter calls 2006-10-14 01:54:42 +00:00
flash_test.rb deprecated keep_flash test 2006-09-04 05:06:10 +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
integration_test.rb Integration tests: introduce methods for other HTTP methods. Closes #6353. 2007-02-22 09:28:10 +00:00
layout_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
mime_responds_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
mime_type_test.rb remove Mime::PLAIN from tests so its not confused with the default Mime::TEXT mime type 2007-02-15 16:40:38 +00:00
new_render_test.rb Deprecation: remove deprecated instance variables. 2007-03-13 03:49:52 +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
redirect_test.rb redirect deprecation tests 2006-09-04 05:05:11 +00:00
render_test.rb Its ETag not Etag 2007-02-19 02:10:19 +00:00
request_test.rb Ignore odd charset declaration in CONTENT_TYPE header which would throw off mime type lookup. 2007-03-05 18:24:17 +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 Allow routing requirements on map.resource(s) (closes #7633) [quixoten] 2007-02-25 20:13:19 +00:00
routing_test.rb Allow array and hash query parameters. Array route parameters are converted/to/a/path as before. References #6765, #7462. Closes #7047. 2007-03-06 07:47:23 +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 Revert [6086] and [6087] since they caused a major regression with functional tests in 1.2.2. References #7372. 2007-02-10 03:55:12 +00:00
url_rewriter_test.rb Adjust test for unsorted Array#to_query. References #7756. 2007-03-11 13:29:40 +00:00
verification_test.rb Deprecation: @request will be removed after 1.2. Use the request method instead. 2006-09-29 07:34:02 +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 Added Hash.create_from_xml(string) which will create a hash from a XML string and even typecast if possible [DHH] 2006-06-16 10:07:13 +00:00