aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2013-04-21 08:19:24 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2013-04-21 08:19:24 -0700
commit5cffc7eb1c9655c93007a7f58e30af96ed81f73a (patch)
treede53286935ffd4cc9be2c95780c2ae63f3997207 /actionpack/test
parent0f93fe3dc778f39711efd8058e17b3bef1eefa40 (diff)
parent6ec28f8cc04e168878803c90f6b32b1caded929d (diff)
downloadrails-5cffc7eb1c9655c93007a7f58e30af96ed81f73a.tar.gz
rails-5cffc7eb1c9655c93007a7f58e30af96ed81f73a.tar.bz2
rails-5cffc7eb1c9655c93007a7f58e30af96ed81f73a.zip
Merge pull request #10283 from wangjohn/remove_tests_for_deprecated_options
Removing tests for deprecated options in active support.
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/render_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/actionpack/test/template/render_test.rb b/actionpack/test/template/render_test.rb
index 2237d747be..81f3391fcd 100644
--- a/actionpack/test/template/render_test.rb
+++ b/actionpack/test/template/render_test.rb
@@ -29,14 +29,6 @@ module RenderTestCases
assert_equal "Hello world!", @view.render(:file => "test/hello_world")
end
- def test_render_file_not_using_full_path
- assert_equal "Hello world!", @view.render(:file => "test/hello_world")
- end
-
- def test_render_file_without_specific_extension
- assert_equal "Hello world!", @view.render(:file => "test/hello_world")
- end
-
# Test if :formats, :locale etc. options are passed correctly to the resolvers.
def test_render_file_with_format
assert_match "<h1>No Comment</h1>", @view.render(:file => "comments/empty", :formats => [:html])