Skip to content

Commit

Permalink
Merge pull request #27746 from kenta-s/add-missing-tests-for-template…
Browse files Browse the repository at this point in the history
…-text

Add missing tests for ActionView::Template::Text
  • Loading branch information
rafaelfranca committed Jan 19, 2017
2 parents dbeed41 + a35aeaa commit 2e91b6b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions actionview/test/template/text_test.rb
Expand Up @@ -4,4 +4,20 @@ class TextTest < ActiveSupport::TestCase
test "formats always return :text" do
assert_equal [:text], ActionView::Template::Text.new("").formats
end

test "identifier should return 'text template'" do
assert_equal "text template", ActionView::Template::Text.new("").identifier
end

test "inspect should return 'text template'" do
assert_equal "text template", ActionView::Template::Text.new("").inspect
end

test "to_str should return a given string" do
assert_equal "a cat", ActionView::Template::Text.new("a cat").to_str
end

test "render should return a given string" do
assert_equal "a dog", ActionView::Template::Text.new("a dog").render
end
end

0 comments on commit 2e91b6b

Please sign in to comment.