Changeset 8385
- Timestamp:
- 12/14/07 18:07:20 (9 months ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_view/base.rb (modified) (1 diff)
- trunk/actionpack/test/action_view_test.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r8384 r8385 1 1 *SVN* 2 3 * Fixed that ActionView#file_exists? would be incorrect if @first_render is set #10569 [dbussink] 2 4 3 5 * Added that Array#to_param calls to_param on all it's elements #10473 [brandon] trunk/actionpack/lib/action_view/base.rb
r8374 r8385 405 405 template_exists?(template_file_name, template_file_extension) 406 406 else 407 pick_template_extension(template_path)407 template_exists?(template_file_name, pick_template_extension(template_path)) 408 408 end 409 409 end trunk/actionpack/test/action_view_test.rb
r8187 r8385 24 24 end 25 25 end 26 27 def test_should_report_file_exists_correctly 28 base = ActionView::Base.new 29 30 assert_nil base.send(:find_template_extension_from_first_render) 31 32 assert_equal false, base.send(:file_exists?, 'test.rhtml') 33 assert_equal false, base.send(:file_exists?, 'test.rb') 34 35 base.instance_variable_set('@first_render', 'foo.rb') 36 37 assert_equal 'rb', base.send(:find_template_extension_from_first_render) 38 39 assert_equal false, base.send(:file_exists?, 'baz') 40 assert_equal false, base.send(:file_exists?, 'baz.rb') 41 42 end 43 26 44 end