.. |
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
|
Deprecated old render parameter calls
|
2006-09-03 23:02:56 +00:00 |
action_pack_assertions_test.rb
|
Deprecation: @request will be removed after 1.2. Use the request method instead.
|
2006-09-29 07:34:02 +00:00 |
addresses_render_test.rb
|
Don't use deprecated render API. Cosmetics.
|
2006-09-04 05:07:26 +00:00 |
assert_select_test.rb
|
one render per test
|
2006-10-09 01:14:38 +00:00 |
base_test.rb
|
Integration tests: thoroughly test ActionController::Integration::Session. Closes #6022.
|
2006-09-03 23:34:57 +00:00 |
benchmark_test.rb
|
Remove ::Controllers related cruft; fix AP tests
|
2006-02-26 17:49:09 +00:00 |
caching_test.rb
|
Make page caching respect the format of the resource that is being requested even if the current route is the default route so that, e.g. posts.rss is not transformed by url_for to '/' and subsequently cached as '/index.html' when it should be cached as '/posts.rss'.
|
2006-10-12 23:29:04 +00:00 |
capture_test.rb
|
Added .rxml (and any non-rhtml template, really) supportfor CaptureHelper#content_for and CaptureHelper#capture #3287 [Brian Takita]
|
2006-02-26 19:47:50 +00:00 |
cgi_test.rb
|
Skip params with empty names, such as the &=Save query string from <input type=submit/>. Closes #2569.
|
2006-09-12 20:57:09 +00:00 |
components_test.rb
|
Deprecate direct usage of @params. Update ActionView::Base for instance var deprecation.
|
2006-08-07 12:40:14 +00:00 |
content_type_test.rb
|
test default content type for implicit rjs template render
|
2006-09-18 16:32:41 +00:00 |
cookie_test.rb
|
Deprecate @cookies
|
2006-09-29 08:04:39 +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 |
deprecated_instance_variables_test.rb
|
test deprecated instance variables using to_s instead of inspect which touches other ivars
|
2006-10-18 00:04:47 +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
|
r4487@asus: jeremy | 2006-04-29 12:21:39 -0700
|
2006-07-08 18:14:49 +00:00 |
integration_test.rb
|
Integration tests: thoroughly test ActionController::Integration::Session. Closes #6022.
|
2006-09-03 23:34:57 +00:00 |
layout_test.rb
|
Declare file extensions exempt from layouts. Closes #6219.
|
2006-09-16 01:31:17 +00:00 |
mime_responds_test.rb
|
r5515@ks: jeremy | 2006-10-08 13:24:42 -0700
|
2006-10-08 20:30:24 +00:00 |
mime_type_test.rb
|
Make new mime types first class [DHH]
|
2006-06-02 04:29:34 +00:00 |
new_render_test.rb
|
Deprecation: @request will be removed after 1.2. Use the request method instead.
|
2006-09-29 07:34:02 +00:00 |
raw_post_test.rb
|
r4748@asus: jeremy | 2006-06-29 22:40:35 -0700
|
2006-06-30 05:41:03 +00:00 |
redirect_test.rb
|
redirect deprecation tests
|
2006-09-04 05:05:11 +00:00 |
render_test.rb
|
render_text may optionally append to the response body. render_javascript appends by default. This allows you to chain multiple render :update calls by setting @performed_render = false between them (awaiting a better public API).
|
2006-10-09 01:26:35 +00:00 |
request_test.rb
|
Fix relative URL root matching problems
|
2006-10-09 19:14:11 +00:00 |
resources_test.rb
|
Make sure map.resources(:things, :new => { :new => :any }) correctly sets /things/new to be accessible by any method rather than creating another resource at /things/new;new
|
2006-09-26 22:45:09 +00:00 |
routing_test.rb
|
clean up failing routing tests from missing :only_path option [Rick]
|
2006-10-22 23:48:52 +00:00 |
selector_test.rb
|
Added assert_select* for CSS selector-based testing (deprecates assert_tag) #5936 [assaf.arkin@gmail.com]
|
2006-09-03 19:54:21 +00:00 |
send_file_test.rb
|
Add ActionController::Base#head for rendering empty responses. Add support for symbolic status codes, as well as for having raw integer statuses expand with their default messages.
|
2006-09-28 19:13:55 +00:00 |
session_management_test.rb
|
Added easy assignment of fragment cache store through use of symbols for included stores (old way still works too)
|
2005-09-13 08:31:32 +00:00 |
test_test.rb
|
Fix broken assert_generates when extra keys are being checked.
|
2006-10-16 14:32:11 +00:00 |
url_rewriter_test.rb
|
Update UrlWriter to support :only_path.
|
2006-09-06 22:21:36 +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 |
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 |