aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/render_partial_test.rb
blob: 7c2c20e1c7aa46dda37fff1bd7a1c3ce3d8d732f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'abstract_unit'

module RenderPartial
  
  class BasicController < ActionController::Base
    
    self.view_paths = [ActionView::FixtureResolver.new(
      "render_partial/basic/_basic.html.erb"    => "OMG!",
      "render_partial/basic/basic.html.erb"      => "<%= @test_unchanged = 'goodbye' %><%= render :partial => 'basic' %><%= @test_unchanged %>"
    )]
    
    def changing
      @test_unchanged = 'hello'
      render :action => "basic"
    end    
  end
  
  class TestPartial < SimpleRouteCase
    testing BasicController
    
    test "rendering a partial in ActionView doesn't pull the ivars again from the controller" do
      get :changing
      assert_response("goodbyeOMG!goodbye")
    end
  end
  
end