aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller/filters_test.rb
Commit message (Expand)AuthorAgeFilesLines
...
* get rid of using instance_variable_names method from ASSergey Nartimov2012-01-071-1/+1
* Tests only after filters in cache sweepersJeroen Jacobs2011-06-221-0/+5
* Fix filter :only and :except with implicit actionsAndrew White2011-03-231-11/+16
* Add a failing test case for an implicit action with a before filter.Manfred Stienstra2011-03-231-0/+22
* cleaning up some warnings on 1.9.3Aaron Patterson2011-02-071-5/+5
* Make after_filter halt when before_filter renders or redirects [#5648 state:r...Marcelo Giorgi2010-11-111-2/+79
* fixing a few test warningsAaron Patterson2010-10-041-2/+2
* We can't assign @view_context_class here, define super() in test instead if w...Emilio Tagua2010-09-291-0/+1
* Remove more warnings on AP.Emilio Tagua2010-09-281-1/+1
* Remove deprecated stuff in ActionControllerCarlos Antonio da Silva2010-09-261-1/+2
* Deletes trailing whitespaces (over text files only find * -type f -exec sed '...Santiago Pastorino2010-08-141-1/+1
* Better test for ticket [#3914 state:resolved]Neeraj Singh2010-06-091-0/+11
* cache_sweeper yields blank outputNeeraj Singh2010-06-081-0/+6
* Use better assertion methods for testingNeeraj Singh2010-05-191-7/+7
* Modify assert_template to use notifications. Also, remove ActionController::B...Carlhuda2010-03-171-2/+2
* deOMGifying Railties, Active Support, and Action PackMikel Lindsaar2010-01-311-3/+3
* Symbol#to_proc is not needed for Ruby >= 1.8.7Xavier Noria2009-11-091-1/+0
* Cleaning up more tests and code that needed to work in both old and new baseYehuda Katz + Carl Lerche2009-06-171-50/+18
* YAGNI Method references. DeprecatedYehuda Katz2009-06-021-4/+6
* Get all the callback tests to work on new baseYehuda Katz + Carl Lerche2009-06-011-22/+46
* Make sure tests pass action name to Controller.action()Pratik Naik2009-05-301-1/+1
* Added a compatibility layer to get legacy filter tests to pass on new baseYehuda Katz + Carl Lerche2009-05-271-5/+27
* Make Filter#filter work with around filtersPratik Naik2009-05-251-59/+54
* Cordon off missing filter methodsJeremy Kemper2009-05-221-0/+8
* Remove gratuitous filter_chain internal testing. Not part of the API and othe...Jeremy Kemper2009-05-221-25/+0
* Rescue hack was supposed to be removed. Some how it crept back in.Joshua Peek2009-05-171-1/+0
* Merge branch 'master' into wip_abstract_controllerYehuda Katz + Carl Lerche2009-05-111-0/+5
|\
| * Extract ActionController rescue templates into Rescue and ShowExceptions midd...Joshua Peek2009-05-021-0/+5
| * Deprecate Controller.process interfaceJoshua Peek2009-05-021-1/+1
* | Implement FooController.action(:name)Yehuda Katz2009-05-021-1/+2
|/
* Update some old tests to use AC TestProcessJoshua Peek2009-04-301-12/+13
* alias method chain process with testJoshua Peek2009-04-301-2/+2
* Deprecate template, session, assigns, and layout accessors on response object...Joshua Peek2009-04-281-70/+107
* Include process methods in ActionController::TestCase only. No need to alias_...Jeremy Kemper2009-01-071-2/+6
* Get rid of 'Object#send!'. It was originally added because it's in Ruby 1.9, ...Jeremy Kemper2008-08-311-1/+1
* Move copying ivar logic from ActionController::Base to ActionView::BasePratik Naik2008-08-311-12/+12
* Fix regression from filter refactoring where re-adding a skipped filter resul...Rick Olson2008-03-231-0/+33
* Refactor filters to use Active Support callbacks. Closes #11235.Jeremy Kemper2008-03-181-15/+10
* Filter procs must take 1 or 2 arguments. Raise ArgumentError otherwise.Jeremy Kemper2008-01-071-7/+4
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-051-1/+1
* Note that filters test crashes Ruby 1.9Jeremy Kemper2007-12-151-0/+1
* Changed before_filter halting to happen automatically on render or redirect b...David Heinemeier Hansson2007-10-211-4/+6
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-1/+1
* Remove deprecated functionality from actionpack. Closes #8958 [lifofifo]Michael Koziarski2007-09-031-3/+3
* Fix errors with around_filters which do not yield, restore 1.1 behaviour with...Michael Koziarski2007-07-111-7/+73
* Rescuing in around_filters works as expected again [codahale, Stephan Kaes]. ...Tobias Lütke2007-05-221-0/+35
* Bug fix for the filter implementationMichael Koziarski2007-05-061-0/+43
* Replace the current block/continuation filter chain handling by an implementa...Rick Olson2007-05-021-26/+40
* make sure filters in subclasses with :only or :except conditions are treated ...Jamis Buck2006-10-141-1/+13
* r5540@ks: jeremy | 2006-10-08 23:05:30 -0700Jeremy Kemper2006-10-091-1/+11