aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/test_case.rb
Commit message (Expand)AuthorAgeFilesLines
* Improve assert_template layout checkingAlexey Vakhov2012-05-041-3/+15
* Fix assert_template :layout => nil assertionAlexey Vakhov2012-05-041-2/+5
* Fix assert_template assertion with :layout optionAlexey Vakhov2012-05-041-1/+1
* Merge pull request #6034 from willbryant/flash_must_not_load_session_on_every...Piotr Sarnacki2012-04-301-1/+0
|\
| * fix the Flash middleware loading the session on every request (very dangerous...Will Bryant2012-04-281-1/+0
* | Fix controller_class_name for anonymous controllers.Michael Schuerig2012-04-291-1/+1
* | Don't convert params if the request isn't HTML - fixes #5341Andrew White2012-04-291-6/+18
* | Merge session arg with existing session instead of overwritingAndrew White2012-04-281-1/+1
|/
* remove unnecessary else statementVasiliy Ermolovich2012-04-261-3/+3
* Remove obsolete codeAlexey Vakhov2012-04-121-3/+0
* We dont need to merge in the parameters as thats all being reset by the rack ...David Heinemeier Hansson2012-03-201-1/+0
* Remove ActionController::TestCase#rescue_action_in_public!Piotr Sarnacki2012-03-151-5/+0
* assert_template matches against RegexpGrant Hutchins2012-03-101-2/+7
* force response body to be read in assert_templateSergey Nartimov2012-03-051-0/+4
* Add config.default_method_for_update to support PATCHDavid Lee2012-02-221-1/+6
* Dont do underscore and camelize, only camelize is fineSemyon Perepelitsa2012-01-311-1/+1
* Merge branch 'master' of github.com:lifo/docrailsVijay Dev2012-01-111-0/+1
|\
| * Add missing endRafael Mendonça França2012-01-101-0/+1
* | AC:TestCase::Behavior#head only accepts parameters as second argumentRafael Mendonça França2012-01-101-1/+1
* | Fix ActionController::TestCase::Behavior.headRafael Mendonça França2012-01-101-1/+1
* | Merge pull request #4371 from rafaelfranca/test_unit_cleanupAaron Patterson2012-01-091-1/+1
|\ \
| * | Whitespaces :scissors:Rafael Mendonça França2012-01-061-1/+1
* | | get rid of using instance_variable_names method from ASSergey Nartimov2012-01-071-2/+2
|/ /
* | register spec subclasses for people who specAaron Patterson2012-01-061-0/+6
* | convert build_message to sprintfAaron Patterson2012-01-061-9/+5
* | test response assertionsAaron Patterson2012-01-061-2/+0
* | use assert_includes rather than calling includes? specificallyAaron Patterson2012-01-061-2/+2
* | Revert "remove deprecated API"Aaron Patterson2012-01-051-0/+12
* | remove deprecated APIAaron Patterson2012-01-051-12/+0
* | fix some whitespace errorsAaron Patterson2012-01-051-5/+5
|/
* allow sending documents in AC::TestCase#post and friends.Nick Sutterer2012-01-031-17/+44
* escape assigns[:person], assigns[person] etc in actioncontroller testcaseNick Howard2011-12-141-3/+3
* Fix bug in assert_template when using only `:layout` optionPrem Sichanugrist2011-12-061-13/+15
* Merge pull request #3193 from avakhov/patch-ac-test-case-safe-constantizeJosé Valim2011-10-031-3/+1
|\
| * use safe_constantize instead constantize in AC::TestCaseAlexey Vakhov2011-10-031-3/+1
* | normalize arg for AC::TestCase tests class methodAlexey Vakhov2011-10-031-2/+14
|/
* if ... nil? is more expensive than unlessMilan Dobrota2011-09-041-3/+3
* Make ActionController::TestCase#recycle! set @protocol to nilDavid Majda2011-08-231-1/+1
* Don't modify params in place - fixes #2624Andrew White2011-08-231-5/+3
* Fix the issue where default_url_options is being cached on test cases. Closes...thoefer2011-08-011-0/+1
* Call super here to allow SessionHash initialize new stuff for usSantiago Pastorino2011-06-191-1/+1
* Add backward compatibility for testing cookiesAndrew White2011-06-051-1/+8
* Refactor ActionController::TestCase cookiesAndrew White2011-06-041-13/+8
* Merge pull request #1203 from dchelimsky/stringify-parameter-values-in-testsJosé Valim2011-05-281-0/+19
|\
| * use to_param (and change method to name accordingly)David Chelimsky2011-05-221-8/+8
| * Stringify param values in controller tests.David Chelimsky2011-05-221-0/+19
* | Replace references to ActiveSupport::SecureRandom with just SecureRandom, and...Jon Leighton2011-05-231-1/+1
|/
* Use anonymous? that works on both Ruby 1.8 and 1.9.José Valim2011-05-171-3/+4
* add more robust test for wrapping params with anonymous classDavid Chelimsky2011-05-171-1/+5
* prevent errors when passing a frozen string as a param to ActionController::T...misfo2011-04-281-1/+3