From 42a1b0c7c31400c762e2f8d1aff16338bbe8d63d Mon Sep 17 00:00:00 2001 From: Anton Kolomiychuk Date: Tue, 23 Jun 2015 00:36:19 +0600 Subject: Add nil check in asset_path --- actionview/test/template/asset_tag_helper_test.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'actionview/test') diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb index 6e6ce20924..d8a2a8bad0 100644 --- a/actionview/test/template/asset_tag_helper_test.rb +++ b/actionview/test/template/asset_tag_helper_test.rb @@ -310,6 +310,11 @@ class AssetTagHelperTest < ActionView::TestCase AssetPathToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } end + def test_asset_path_tag_raises_an_error_for_nil_source + exception = assert_raise(ArgumentError) { asset_path(nil) } + assert_equal("Cannot pass nil as asset source", exception.message) + end + def test_asset_path_tag_to_not_create_duplicate_slashes @controller.config.asset_host = "host/" assert_dom_equal('http://host/foo', asset_path("foo")) -- cgit v1.2.3