aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
Commit message (Collapse)AuthorAgeFilesLines
* Make router shortcuts more polite to URLs starting with a leading slash.José Valim2010-03-221-0/+18
|
* Fixed a bunch of tests that failed in 1.9 because they assumed that a Rack ↵wycats2010-03-195-7/+25
| | | | response was a String.
* Improve performance of the rendering stack by freezing formats as a sign ↵José Valim2010-03-193-19/+43
| | | | that they shouldn't be further modified.
* remove duplicated self.view_paths assingment on controller tests [#4206 ↵Santiago Pastorino2010-03-181-2/+2
| | | | | | state:commited] Signed-off-by: wycats <wycats@gmail.com>
* Return a valid Rack response from bare ActionController::MetalCarlhuda2010-03-181-0/+27
|
* Make render :partial, :layout consistent between AC and AVCarlhuda2010-03-181-11/+1
|
* All tests pass without memoizing view_contextCarlhuda2010-03-185-12/+23
|
* Sending the partial as info is no longer required.José Valim2010-03-181-2/+2
|
* Deleting and setting a cookie in the same request was brokenMathias Biilmann Christensen2010-03-171-0/+11
| | | | | | | | Made sure to remove a cookie from @deleted_cookies when set [#4211 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Modify assert_template to use notifications. Also, remove ↵Carlhuda2010-03-179-64/+72
| | | | ActionController::Base#template since it is no longer needed.
* Remove unneeded AV::Base and AV::Template monkey-patchesCarlhuda2010-03-171-3/+2
|
* Modify assert_template to use instrumentationCarlhuda2010-03-171-41/+0
|
* Install url helpers on module instance so they can be accessedJoshua Peek2010-03-171-0/+1
| | | | globally
* link_to_function is here to stayJoshua Peek2010-03-161-1/+30
|
* scope_key_by_partial fix for Ruby 1.9 when there's virtual_path [#4202 ↵Santiago Pastorino2010-03-162-0/+7
| | | | | | state:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Fix rendering of HTML partials inside JS templates [#4197 status:resolved]José Valim2010-03-161-0/+7
|
* translation method of TranslationHelper module returns always SafeBuffer ↵Santiago Pastorino2010-03-162-1/+9
| | | | | | [#4194 status:resolved] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* adds tests for #flush_output_bufferXavier Noria2010-03-161-2/+37
| | | | | | [#4196 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* adds tests for #captureXavier Noria2010-03-161-0/+23
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Some more tweaks on <% %>.Carlhuda2010-03-161-4/+4
| | | | * The cache helper is now semantically "mark this region for caching" * As a result, <% x = cache do %> no longer works
* Break a window :/Jeremy Kemper2010-03-155-7/+7
|
* Fix link_to with blockJeremy Kemper2010-03-151-4/+1
|
* Swear I ran this testJeremy Kemper2010-03-151-1/+1
|
* Integration test url options should account for :protocol not just https?Jeremy Kemper2010-03-151-1/+6
|
* Move more normalization up to the lookup context, so it does not have to ↵José Valim2010-03-162-9/+9
| | | | repeat in every resolver.
* adds test coverage for with_output_bufferXavier Noria2010-03-151-3/+45
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Add deprecation notices for <% %>.Carlhuda2010-03-157-23/+35
| | | | | | | | | | | | | | | | * The approach is to compile <% %> into a method call that checks whether the value returned from a block is a String. If it is, it concats to the buffer and prints a deprecation warning. * <%= %> uses exactly the same logic to compile the template, which first checks to see whether it's compiling a block. * This should have no impact on other uses of block in templates. For instance, in <% [1,2,3].each do |i| %><%= i %><% end %>, the call to each returns an Array, not a String, so the result is not concatenated * In two cases (#capture and #cache), a String can be returned that should *never* be concatenated. We have temporarily created a String subclass called NonConcattingString which behaves (and is serialized) identically to String, but is not concatenated by the code that handles deprecated <% %> block helpers. Once we remove support for <% %> block helpers, we can remove NonConcattingString.
* with_output_buffer cannot assume there's an output_bufferXavier Noria2010-03-151-0/+6
| | | | | | [#4182 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Don't force singularization of singleton resource names, e.g. /preferences ↵Andrew White2010-03-151-0/+7
| | | | | | [#4089 state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* read_ and write_fragment cache preserve html safety yet cache strings onlyJeremy Kemper2010-03-141-0/+13
|
* There's a Ruby issue with File.basename different versions returns different ↵Santiago Pastorino2010-03-141-1/+0
| | | | things, so we shouldn't test that
* Ensure controller filters are executed before stuff starts to happen.José Valim2010-03-131-0/+14
|
* Made asset_tag_helper use config.perform_caching instead of ↵Denis Odorcic2010-03-121-18/+18
| | | | | | ActionController::Base.perform_caching Signed-off-by: José Valim <jose.valim@gmail.com>
* Allow anything that responds to render to be given as :template and use ↵José Valim2010-03-121-104/+52
| | | | find_template instead of find in views.
* %= works for content_tag and does not require parenthesis on method callJosé Valim2010-03-121-2/+2
|
* Make all AP tests pass for Ruby 1.9.1.José Valim2010-03-123-9/+8
|
* Fix testJeremy Kemper2010-03-111-1/+1
|
* simplify alt tag generation for imagesEaden McKee2010-03-111-1/+4
| | | | | | [#2837 state:committed] Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Add tests for lookup context.José Valim2010-03-113-1/+170
|
* Merge branch 'master' of github.com:rails/railswycats2010-03-103-10/+9
|\
| * Merge branch 'master' of gitproxy:rails/railsJosé Valim2010-03-103-8/+8
| |\
| * | Optimize and clean up how details key get expired.José Valim2010-03-102-7/+4
| | |
| * | Merge branch 'master' of gitproxy:rails/railsJosé Valim2010-03-094-32/+24
| |\ \
| * | | Clean up the API required from ActionView::Template.José Valim2010-03-091-3/+5
| | | |
* | | | Make form helpers work with <%= wycats2010-03-095-112/+132
| | | |
* | | | Deprecate block_called_from_erb? pending a solution for getting it into appsCarlhuda2010-03-093-21/+67
| |_|/ |/| |
* | | skip_relative_url_root url_for option is deadJoshua Peek2010-03-091-1/+1
| | |
* | | Allow default_url_options to be set on route setJoshua Peek2010-03-091-0/+4
| | |
* | | RouteSet#rewrite => url_forJoshua Peek2010-03-092-3/+3
| | |
* | | Move AC::UrlRewriter onto route setJoshua Peek2010-03-092-7/+3
| |/ |/|