aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test
diff options
context:
space:
mode:
authorMike Stone <mike.stone@meyouhealth.com>2015-02-02 11:42:19 -0500
committerMike Stone <mike.stone@meyouhealth.com>2015-04-24 11:26:49 -0400
commit8cbeec773ffce82dd521469ac37625630ed00701 (patch)
treee6abc4f0fcd3f71f66a9bb194ec2a15825b63690 /actionview/test
parentb29d794b8cdf59896e668a0f68038dd25228398e (diff)
downloadrails-8cbeec773ffce82dd521469ac37625630ed00701.tar.gz
rails-8cbeec773ffce82dd521469ac37625630ed00701.tar.bz2
rails-8cbeec773ffce82dd521469ac37625630ed00701.zip
image_tag raises an error if size is passed with height and/or width
Diffstat (limited to 'actionview/test')
-rw-r--r--actionview/test/template/asset_tag_helper_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb
index 02dce71496..6e6ce20924 100644
--- a/actionview/test/template/asset_tag_helper_test.rb
+++ b/actionview/test/template/asset_tag_helper_test.rb
@@ -464,6 +464,14 @@ class AssetTagHelperTest < ActionView::TestCase
assert_equal({:size => '16x10'}, options)
end
+ def test_image_tag_raises_an_error_for_competing_size_arguments
+ exception = assert_raise(ArgumentError) do
+ image_tag("gold.png", :height => "100", :width => "200", :size => "45x70")
+ end
+
+ assert_equal("Cannot pass a :size option with a :height or :width option", exception.message)
+ end
+
def test_favicon_link_tag
FaviconLinkToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) }
end