.. |
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
|
Silence log_error deprecation warnings from inspecting deprecated instance variables.
|
2006-12-19 23:16:10 +00:00 |
action_pack_assertions_test.rb
|
Merge [5645] from 1.2.
|
2006-11-28 23:41:04 +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
|
assert_select_rjs :remove
|
2006-11-15 12:45:52 +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
|
Only cache GET requests with a 200 OK response. Closes #6514, #6743.
|
2006-12-19 20:25:52 +00:00 |
capture_test.rb
|
update_element_function is deprecated
|
2006-11-13 00:53:20 +00:00 |
cgi_test.rb
|
Multipart form values may have a content type without being treated as uploaded files if they do not provide a filename. Closes #6401.
|
2006-11-09 18:52:19 +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
|
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
|
Remove unrelated render :yaml changes. References #4185.
|
2006-12-06 23:16:25 +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
|
Ensure render_to_string cleans up after itself when an exception is raised. Closes #6658. Great tests!
|
2006-11-20 11:03:21 +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
|
Ensure render :json => ... skips the layout. Closes #6808 [Josh Peek]
|
2006-12-19 04:41:57 +00:00 |
request_test.rb
|
Added Request#format to return the format used for the request as a mime type. If no format is specified, the first Request#accepts type is used. This means you can stop using respond_to for anything else than responses [DHH]
|
2006-12-02 23:07:04 +00:00 |
rescue_test.rb
|
Use 400 Bad Request status for unrescued ActiveRecord::RecordInvalid exceptions.
|
2006-12-22 00:27:39 +00:00 |
resources_test.rb
|
added tests checking for nested singleton resources
|
2006-12-07 16:31:41 +00:00 |
routing_test.rb
|
Fix a bug in Routing where a parameter taken from the path of the current request could not be used as a query parameter for the next. Closes #6752.
|
2006-12-09 04:42:32 +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
|
Dont set default charset if the response is sending a file. Closes #6689 [DHH]
|
2006-11-25 19:29:10 +00:00 |
session_management_test.rb
|
Always clear model associations from session. Closes #4795.
|
2006-11-13 18:59:01 +00:00 |
test_test.rb
|
@response.redirect_url works with 201 Created responses: just return headers['Location'] rather than checking the response status.
|
2006-11-28 23:25:00 +00:00 |
url_rewriter_test.rb
|
Update Routing to complain when :controller is not specified by a route. Closes #6669.
|
2006-11-22 16:31:00 +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 |