提交 cb8f7a11 编写于 作者: X Xavier Noria

removes orphan tests, custom String#% was removed from AS in 39d6f9e1

上级 bb7b705b
......@@ -321,75 +321,6 @@ def test_mb_chars_returns_instance_of_proxy_class
end
end
=begin
string.rb - Interpolation for String.
Copyright (C) 2005-2009 Masao Mutoh
You may redistribute it and/or modify it under the same
license terms as Ruby.
=end
class TestGetTextString < Test::Unit::TestCase
def test_sprintf
assert_equal("foo is a number", "%{msg} is a number" % {:msg => "foo"})
assert_equal("bar is a number", "%s is a number" % ["bar"])
assert_equal("bar is a number", "%s is a number" % "bar")
assert_equal("1, test", "%{num}, %{record}" % {:num => 1, :record => "test"})
assert_equal("test, 1", "%{record}, %{num}" % {:num => 1, :record => "test"})
assert_equal("1, test", "%d, %s" % [1, "test"])
assert_equal("test, 1", "%2$s, %1$d" % [1, "test"])
assert_raise(ArgumentError) { "%-%" % [1] }
end
def test_percent
assert_equal("% 1", "%% %<num>d" % {:num => 1.0})
assert_equal("%{num} %<num>d 1", "%%{num} %%<num>d %<num>d" % {:num => 1})
end
def test_sprintf_percent_in_replacement
assert_equal("%<not_translated>s", "%{msg}" % { :msg => '%<not_translated>s', :not_translated => 'should not happen' })
end
def test_sprintf_lack_argument
assert_raises(KeyError) { "%{num}, %{record}" % {:record => "test"} }
assert_raises(KeyError) { "%{record}" % {:num => 1} }
end
def test_no_placeholder
# Causes a "too many arguments for format string" warning
# on 1.8.7 and 1.9 but we still want to make sure the behavior works
silence_warnings do
assert_equal("aaa", "aaa" % {:num => 1})
assert_equal("bbb", "bbb" % [1])
end
end
def test_sprintf_ruby19_style
assert_equal("1", "%<num>d" % {:num => 1})
assert_equal("0b1", "%<num>#b" % {:num => 1})
assert_equal("foo", "%<msg>s" % {:msg => "foo"})
assert_equal("1.000000", "%<num>f" % {:num => 1.0})
assert_equal(" 1", "%<num>3.0f" % {:num => 1.0})
assert_equal("100.00", "%<num>2.2f" % {:num => 100.0})
assert_equal("0x64", "%<num>#x" % {:num => 100.0})
assert_raise(ArgumentError) { "%<num>,d" % {:num => 100} }
assert_raise(ArgumentError) { "%<num>/d" % {:num => 100} }
end
def test_sprintf_old_style
assert_equal("foo 1.000000", "%s %f" % ["foo", 1.0])
end
def test_sprintf_mix_unformatted_and_formatted_named_placeholders
assert_equal("foo 1.000000", "%{name} %<num>f" % {:name => "foo", :num => 1.0})
end
def test_string_interpolation_raises_an_argument_error_when_mixing_named_and_unnamed_placeholders
assert_raises(ArgumentError) { "%{name} %f" % [1.0] }
assert_raises(ArgumentError) { "%{name} %f" % [1.0, 2.0] }
end
end
class OutputSafetyTest < ActiveSupport::TestCase
def setup
@string = "hello"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册