aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
Commit message (Collapse)AuthorAgeFilesLines
* Move stuff from compatibility.rb to deprecated.rbCarlhuda2010-03-041-1/+0
|
* Clarify cookie jar testJeremy Kemper2010-03-041-6/+1
|
* Safely cleans up a test to avoid relying on a particular test orderwycats2010-03-041-10/+23
|
* Fixes test ordering bug (ht: evan)wycats2010-03-041-0/+3
|
* Fix a bunch of failing AP / AM specs created from the previous ↵Carl Lerche2010-03-041-27/+15
| | | | AbstractController configuration refactor.
* Merge branch 'configuration_refactor'Carl Lerche2010-03-0312-224/+129
|\
| * Move the original config method onto AbstractControllerCarl Lerche2010-03-032-2/+2
| |
| * Start refactoring the method of configuring ActionViewCarlhuda2010-03-034-24/+23
| |
| * Deprecate IP spoofing settings that are directly on the controller in favor ↵Carlhuda2010-03-031-2/+0
| | | | | | | | of configuring a middleware
| * Move remote_ip to a middleware:Carlhuda2010-03-031-5/+7
| | | | | | | | | | * ActionController::Base.ip_spoofing_check deprecated => config.action_dispatch.ip_spoofing_check * ActionController::Base.trusted_proxies deprecated => config.action_dispatch.trusted_proxies
| * ActionController::Base.use_accept_header is not actually used anymore, so ↵Carl Lerche2010-03-034-26/+0
| | | | | | | | let's deprecate it.
| * ActionDispatch::Request deprecates #request_uriCarl Lerche2010-03-033-17/+17
| | | | | | | | * Refactored ActionPatch to use fullpath instead
| * Fix tests for the request refactorCarl Lerche2010-03-033-21/+40
| |
| * Tweak the semantic of various URL related methods of ActionDispatch::RequestCarlhuda2010-03-034-87/+16
| |
| * Work on deprecating ActionController::Base.relative_url_rootCarlhuda2010-03-033-39/+22
| |
| * Move session_store and session_options to the AC configuration objectCarlhuda2010-03-031-2/+3
| |
* | don't depend on the order of cookies (Hash ordering bug)Yehuda Katz2010-03-031-1/+1
|/
* Fix failing Action Pack testsCarlhuda2010-03-024-3/+14
|
* No longer add missing leading / on path args to assert_redirected_to. ↵Jeremy Kemper2010-03-021-2/+4
| | | | Deprecated in 2.3.6.
* Fix some tests that relied on hardcoded Exception information (ht: evan)Yehuda Katz2010-03-021-2/+2
|
* Action Mailer setup obviated by test bundleJeremy Kemper2010-03-021-12/+1
|
* Change AV formats so they can delegate to the controller. Now users (or ↵Carlhuda2010-03-012-0/+2
| | | | plugins) can override details_for_render in their controllers and add appropriate additional details. Now if only they could *do* something with those details...
* add activesupport and activemodel load paths to actionpack testsJoshua Peek2010-02-281-0/+6
|
* Remove implicit controller namespacing from new dslJoshua Peek2010-02-283-7/+13
|
* 1.9 seems to have a bug involving cloned classes and super. Fix it by not ↵Carlhuda2010-02-261-8/+12
| | | | cloning (and instead creating classes on demand). The 1.9 bug should be investigated.
* If IntegrationSession is initialized with an objects that responds to ↵Carlhuda2010-02-264-6/+3
| | | | #routes, automatically extend the URL helpers from the RouteSet onto it
* Upon further reflection, we realized that SharedTestRoutes is not really a ↵Carlhuda2010-02-261-1/+0
| | | | | | | | hack, but is instead a standin (in the Rails tests) for Rails.application.routes. * In a real application, action_controller/railties.rb does AC::Base.include(app.routes.url_helpers) * ActionController itself does not know about Rails.application, but instead can have named routes for any router * SharedTestRoutes are created in abstract_unit to stand in for Rails.application.routes, and is used in internal functional tests
* Relatively speaking, it's not actually that bad...Carlhuda2010-02-261-2/+0
|
* Setting UrlFor in with_routing is no longer needed now that it's not globalCarlhuda2010-02-261-4/+5
|
* Remove traces of SharedTestRoutes from user code; leave it as a standin for ↵Carlhuda2010-02-261-1/+0
| | | | Rails.application.routes in Rails internal tests
* Stop setting UrlFor using SharedTestHelpersCarlhuda2010-02-262-4/+4
|
* Silence test deprecation warningsCarlhuda2010-02-262-17/+56
|
* Rename named_url_helpers to url_helpers and url_helpers to url_forCarlhuda2010-02-267-14/+14
|
* Fix controller_path returnsing an empty string in Ruby 1.8.7 [#4036 ↵José Valim2010-02-261-0/+9
| | | | status:resolved]
* Rename metaclass to singleton_classCarlhuda2010-02-253-4/+4
|
* Get URL helpers working again in integration tests.Carlhuda2010-02-251-17/+7
|
* Continued effort to deglobalize the routerCarlhuda2010-02-252-27/+8
|
* Fix all of AP's tests with the non global routerCarlhuda2010-02-252-5/+7
|
* Merge branch 'master' of github.com:rails/railsCarlhuda2010-02-251-1/+1
|
* WIP: Remove the global routerCarlhuda2010-02-2511-65/+101
|
* add time_separator for minutes only if minutes aren't hiddenSantiago Pastorino2010-02-251-0/+41
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Renamed LocalizedCache to DetailsCache.José Valim2010-02-241-1/+1
|
* Cleanup render callstack and make render(:json => {}, :status => 401) work ↵José Valim2010-02-241-0/+10
| | | | again.
* Remove ActionController::Base.resources_path_namesCarl Lerche2010-02-241-9/+10
|
* Fix render :file => "#{Rails.root}/public/404.html", :status => :not_found. ↵Yehuda Katz2010-02-232-0/+10
| | | | Closes #8994
* Revert "Fix test load paths for those not using bundler"Carlhuda2010-02-234-19/+4
| | | | | | This reverts commit eec2d301d4ce9df9c71c1a5aa63053eb970b6818. This commit broke tests. You cannot have a file called "bundler" on the load path.
* Makes send_file work again by deferring to Rack::Sendfile. Carlhuda2010-02-232-25/+2
| | | | | | | | | | * Add the Rack::Sendfile middleware * Make the header to use configurable via config.action_dispatch.x_sendfile_header (default to "X-Sendfile"). * Add Railties tests to confirm that these work * Remove the :stream, :buffer_size, and :x_senfile default options to send_file * Change the log subscriber to always say "Sent file" * Add deprecation warnings for options that are now no-ops Note that servers can configure this by setting X-Sendfile-Type. Hosting companies and those creating packages of servers specially designed for Rails applications are encouraged to specify this header so that this can work transparently.
* Fix streaming by having it create a File object, which can be handled by ↵Carlhuda2010-02-231-3/+11
| | | | Rack servers as appropriate
* Use ActionDispatch::Routing everywhereMartin Schürrer2010-02-217-26/+26
|
* Add a tests which ensures filtered_parameters does not raise an error for a ↵José Valim2010-02-211-1/+1
| | | | mixed array [#3928 status:resolved]