blob: ee526dc3676ec9aa39e1ca3101fc18ec178c5606 (
plain) (
blame)
1
2
3
4
5
6
7
|
require "abstract_unit"
class TextTest < ActiveSupport::TestCase
test "formats always return :text" do
assert_equal [:text], ActionView::Template::Text.new("").formats
end
end
|