aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actioncable/README.md2
-rw-r--r--actionview/test/template/asset_tag_helper_test.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/actioncable/README.md b/actioncable/README.md
index da312b2264..13b79d15ca 100644
--- a/actioncable/README.md
+++ b/actioncable/README.md
@@ -5,7 +5,7 @@ It allows for real-time features to be written in Ruby in the same style
and form as the rest of your Rails application, while still being performant
and scalable. It's a full-stack offering that provides both a client-side
JavaScript framework and a server-side Ruby framework. You have access to your full
-domain model written with ActiveRecord or your ORM of choice.
+domain model written with Active Record or your ORM of choice.
## Terminology
diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb
index fe40010528..8592a2a083 100644
--- a/actionview/test/template/asset_tag_helper_test.rb
+++ b/actionview/test/template/asset_tag_helper_test.rb
@@ -27,6 +27,8 @@ class AssetTagHelperTest < ActionView::TestCase
end
AssetPathToTag = {
+ %(asset_path("")) => %(),
+ %(asset_path(" ")) => %(),
%(asset_path("foo")) => %(/foo),
%(asset_path("style.css")) => %(/style.css),
%(asset_path("xmlhr.js")) => %(/xmlhr.js),