aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_process.rb
Commit message (Expand)AuthorAgeFilesLines
* 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
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-3/+3
* Add a 'referer' attribute to TestRequestJamis Buck2006-12-191-0/+4
* @response.redirect_url works with 201 Created responses: just return headers[...Jeremy Kemper2006-11-281-1/+1
* Use Location rather than location header.Jeremy Kemper2006-11-261-1/+1
* Always clear model associations from session. Closes #4795.Jeremy Kemper2006-11-131-10/+23
* Moved in deprecated assertions and remove duplicated requiresDavid Heinemeier Hansson2006-09-031-6/+1
* Better compartmentalizing of assertionsDavid Heinemeier Hansson2006-09-031-4/+6
* Added assert_select* for CSS selector-based testing (deprecates assert_tag) #...David Heinemeier Hansson2006-09-031-0/+2
* Require Tempfile explicitly for TestUploadedFile due to changes in class auto...Rick Olson2006-08-091-0/+1
* show missing file path on failed fixture_file_uploadRick Olson2006-07-301-1/+1
* Ensure TestRequest#session always returns a TestSession [Koz]Michael Koziarski2006-07-281-1/+1
* r4487@asus: jeremy | 2006-04-29 12:21:39 -0700Jeremy Kemper2006-07-081-3/+5
* Fix documentation for with_routing to reflect new reality (closes #5281)Jamis Buck2006-06-051-7/+9
* New routes implementation. Simpler, faster, easier to understand. The publish...Jamis Buck2006-06-011-2/+2
* Easy way to set accepting for functional testsDavid Heinemeier Hansson2006-05-311-0/+4
* follow_redirect doesn't complain about being redirected to the same controlle...Jeremy Kemper2006-05-221-2/+3
* Replace alias method chaining with Module#alias_method_chain. [Marcel Molina ...Marcel Molina2006-04-291-2/+1
* reset TestRequest#parameters after assigning paramtersRick Olson2006-04-221-0/+1
* add the TestCase.fixture_path when testing file uploadsRick Olson2006-03-271-1/+1
* If RAW_POST_DATA was set explicitly, use that (closes #4281)David Heinemeier Hansson2006-03-191-6/+10
* Added easy support for testing file uploads with fixture_file_upload (closes ...David Heinemeier Hansson2006-03-181-0/+43
* Added TestRequest#raw_post that simulate raw_post from CgiRequest (closes #30...David Heinemeier Hansson2006-03-161-0/+10
* Make the xml_http_request testing method set the HTTP_ACCEPT headerJamis Buck2006-03-141-0/+2
* Added better support for using the same actions to output for different sourc...David Heinemeier Hansson2006-03-111-1/+1
* Move methods from TestResponse into a module, so they can be shared with resp...Jamis Buck2006-03-091-1/+7
* restore elided TestProcess#assigns methodJamis Buck2006-03-011-6/+7
* Make TestProcess methods public for access via Integration::Session. Make ret...Jamis Buck2006-03-011-114/+105
* Fixed that the request method would be sticky in tests (closes #3849) [lars@p...David Heinemeier Hansson2006-02-201-2/+3
* Added reusable reloading support through the inclusion of the Relodable modul...David Heinemeier Hansson2006-01-291-0/+7
* Extract Test::Unit::TestCase test process behavior into an ActionController::...Sam Stephenson2006-01-201-107/+113
* Add line and file information to test process' get, post, etc methodsNicholas Seckar2005-10-161-1/+1
* reasoning behind the seemingly duplicated methodMichael Koziarski2005-10-151-1/+2
* Add code and message to test response as per #2460Michael Koziarski2005-10-151-0/+8
* Unset the X-Requested-With header when using the xhr wrapper in functional te...Sam Stephenson2005-10-131-1/+3
* Testing should also use a default REQUEST_METHODDavid Heinemeier Hansson2005-09-291-0/+1
* Asserts now need html/document so it should require itDavid Heinemeier Hansson2005-09-211-9/+0
* Use raise instead of assert_not_nil in Test::Unit::TestCase#process to ensure...Jamis Buck2005-08-011-5/+6
* Make sure assigns are built for every request when testing #1866Jamis Buck2005-07-311-0/+9
* Allow remote_addr to be queried on TestRequest #1668Jamis Buck2005-07-311-0/+4
* Improved performance with 5-30% through a series of Action Pack optimizations...David Heinemeier Hansson2005-07-231-0/+1
* Added support for per-action session management #1763Jamis Buck2005-07-221-1/+1