aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_process.rb
Commit message (Expand)AuthorAgeFilesLines
* Change Object#try to raise NoMethodError on private methods and always return...Pratik Naik2009-01-131-1/+2
* Include process methods in ActionController::TestCase only. No need to alias_...Jeremy Kemper2009-01-071-34/+20
* Request#env['SERVER_NAME'] does not contain port numberPratik Naik2008-12-281-5/+1
* Undry ActionController::TestCase#<HTTP_METHODS> for better documentationPratik Naik2008-12-251-12/+25
* Move request parsing related code to ActionController::RequestParserPratik Naik2008-12-251-10/+21
* Use Rack::MockRequest for TestRequestPratik Naik2008-12-231-7/+7
* Switch to Rack::Response#set_cookie instead of using CGI::Cookie to build coo...Joshua Peek2008-12-201-3/+3
* Rename AbstractResponse to Response and inheirt from Rack::ResponseJoshua Peek2008-12-191-3/+3
* Process CGI 'cookie' header into 'Set-Cookie' for all responses.Joshua Peek2008-12-191-1/+6
* Use status response accessor instead of the 'Status' headerJoshua Peek2008-12-191-1/+1
* Lazy load flash accessJoshua Peek2008-12-161-1/+1
* Use Mime::JS in place of explicit 'text/javascript' [#1573 state:resolved]Seth Fitzsimmons2008-12-151-1/+1
* Add :partial option to assert_template [#1550 state:resolved]mark2008-12-111-2/+2
* Add TestResponse#client_error? to check for 4xx status codes [#851 state:reso...Lance Ivy2008-11-221-1/+6
* Fix straggling references to Test::Unit::TestCaseJeremy Kemper2008-11-201-8/+4
* Merge branch 'master' into testingJeremy Kemper2008-11-151-0/+1
|\
| * Changed request forgery protection to only worry about HTML-formatted content...Jeff Cohen2008-11-131-0/+1
* | Move controller assertions from base TestCase to AC:: and AV::TestCaseJeremy Kemper2008-11-071-3/+3
* | Remove controller assertions from Test::Unit::TestCase. Use ActionController:...Jeremy Kemper2008-11-071-1/+0
|/
* Track rendered templates in stack so the current template can always be acces...Joshua Peek2008-10-281-1/+1
* Dont try to auto-set the etag based on the body if any freshness headers have...David Heinemeier Hansson2008-10-211-0/+6
* Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...Jeremy Kemper2008-08-311-3/+3
* Prefix ActionView::Base private methods with an underscoreJoshua Peek2008-08-311-1/+1
* Move copying ivar logic from ActionController::Base to ActionView::BasePratik Naik2008-08-311-1/+8
* Add TestUploadFile.content_type= to match Request.UploadedFileTim Haines2008-08-271-1/+1
* Use Response status accessor instead of the Status headerJoshua Peek2008-08-171-17/+17
* TestRequest#recycle! uses unmemoize_all to reset cached request method, accep...Jeremy Kemper2008-08-131-3/+3
* Update tests for request memoizationJeremy Kemper2008-08-081-5/+19
* Simplifying usage of ETags and Last-Modified and conditional GET requestsJeremy Kemper2008-08-071-11/+3
* Merge docrails changesPratik Naik2008-07-281-1/+8
* All 2xx requests are considered successful [#217 state:resolved]Joshua Peek2008-07-161-1/+1
* Merge with docrails.Pratik Naik2008-07-161-1/+1
* Made ActionView::Base#first_render a little more private. And added _last_ren...Joshua Peek2008-07-131-11/+4
* Refactor template preloading. New abstractions include Renderable mixins and ...Joshua Peek2008-07-121-7/+3
* Remove old broken follow_redirect from functional tests. Still works in inte...Michael Koziarski2008-07-041-9/+0
* Merge docrails.Pratik Naik2008-05-251-2/+2
* Ruby 1.9 compat: ensure binary encoding for post body parsingJeremy Kemper2008-05-191-1/+2
* Improve documentation coverage and markupXavier Noria2008-05-021-31/+33
* TestSession supports indifferent access. Closes #7372.Jeremy Kemper2008-02-021-3/+3
* * Continue evolution toward ActiveSupport::TestCase and friends. #10679 [Jos...Jeremy Kemper2008-01-051-0/+1
* Ruby 1.9 compat: introduce instance_variable_names. Closes #10630 [Frederick ...Jeremy Kemper2007-12-281-1/+1
* Fixed send_file/binary_content for testing (closes #8044) [tolsen]David Heinemeier Hansson2007-12-051-7/+1
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-9/+9
* Add option to force binary mode on tempfile used for fixture_file_upload. Clo...Jeremy Kemper2007-09-141-3/+11
* Fix assert_select for XML documents. Closes #8173. [dasil003]Michael Koziarski2007-09-081-1/+2
* Add a user_agent to TestRequestMichael Koziarski2007-09-071-1/+2
* Introduce the request.body stream. Lazy-read to parse parameters rather than ...Jeremy Kemper2007-05-151-11/+19
* Prefer MIME constants to strings. Closes #7707.Jeremy Kemper2007-03-061-7/+7
* Revert [6086] and [6087] since they caused a major regression with functional...Jeremy Kemper2007-02-101-2/+2
* TestSession supports indifferent access so session['foo'] == session[:foo] in...Jeremy Kemper2007-01-281-2/+2