aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorGuo Xiang Tan <tgx_world@hotmail.com>2014-07-02 15:36:23 -0700
committerGuo Xiang Tan <tgx_world@hotmail.com>2014-08-14 00:03:32 +0800
commitb1ba333ea72b8aa8fc5ffeda4067c128afb026e4 (patch)
tree3c88c707c9a1715fda7e31e307e5e1af8adc57ec /actionpack/test/controller
parente9ce987a9a6fdad436b5511874963e8485b66f84 (diff)
downloadrails-b1ba333ea72b8aa8fc5ffeda4067c128afb026e4.tar.gz
rails-b1ba333ea72b8aa8fc5ffeda4067c128afb026e4.tar.bz2
rails-b1ba333ea72b8aa8fc5ffeda4067c128afb026e4.zip
Fix assert_template for files.
The test was not failing for `assert_template file: nil` when a file has been rendered.
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/action_pack_assertions_test.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/actionpack/test/controller/action_pack_assertions_test.rb b/actionpack/test/controller/action_pack_assertions_test.rb
index b6b5a218cc..311302819e 100644
--- a/actionpack/test/controller/action_pack_assertions_test.rb
+++ b/actionpack/test/controller/action_pack_assertions_test.rb
@@ -488,6 +488,11 @@ class AssertTemplateTest < ActionController::TestCase
assert_raise(ActiveSupport::TestCase::Assertion) do
assert_template :file => 'test/hello_world'
end
+
+ get :render_file_absolute_path
+ assert_raise(ActiveSupport::TestCase::Assertion) do
+ assert_template file: nil
+ end
end
def test_with_nil_passes_when_no_template_rendered
@@ -612,6 +617,24 @@ class AssertTemplateTest < ActionController::TestCase
get :nothing
assert_template nil
+
+ get :partial
+ assert_template partial: 'test/_partial'
+
+ get :nothing
+ assert_template partial: nil
+
+ get :render_with_layout
+ assert_template layout: 'layouts/standard'
+
+ get :nothing
+ assert_template layout: nil
+
+ get :render_file_relative_path
+ assert_template file: 'README.rdoc'
+
+ get :nothing
+ assert_template file: nil
end
end