mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@7de852d
This commit is contained in:
parent
994833085a
commit
79671ec57e
135 changed files with 4415 additions and 4885 deletions
|
@ -104,30 +104,28 @@ describe "String#center with length, padding" do
|
|||
"hello".center(6, 'X'.taint).tainted?.should be_true
|
||||
end
|
||||
|
||||
with_feature :encoding do
|
||||
describe "with width" do
|
||||
it "returns a String in the same encoding as the original" do
|
||||
str = "abc".force_encoding Encoding::IBM437
|
||||
result = str.center 6
|
||||
result.should == " abc "
|
||||
result.encoding.should equal(Encoding::IBM437)
|
||||
end
|
||||
describe "with width" do
|
||||
it "returns a String in the same encoding as the original" do
|
||||
str = "abc".force_encoding Encoding::IBM437
|
||||
result = str.center 6
|
||||
result.should == " abc "
|
||||
result.encoding.should equal(Encoding::IBM437)
|
||||
end
|
||||
end
|
||||
|
||||
describe "with width, pattern" do
|
||||
it "returns a String in the compatible encoding" do
|
||||
str = "abc".force_encoding Encoding::IBM437
|
||||
result = str.center 6, "あ"
|
||||
result.should == "あabcああ"
|
||||
result.encoding.should equal(Encoding::UTF_8)
|
||||
end
|
||||
|
||||
describe "with width, pattern" do
|
||||
it "returns a String in the compatible encoding" do
|
||||
str = "abc".force_encoding Encoding::IBM437
|
||||
result = str.center 6, "あ"
|
||||
result.should == "あabcああ"
|
||||
result.encoding.should equal(Encoding::UTF_8)
|
||||
end
|
||||
|
||||
it "raises an Encoding::CompatibilityError if the encodings are incompatible" do
|
||||
pat = "ア".encode Encoding::EUC_JP
|
||||
lambda do
|
||||
"あれ".center 5, pat
|
||||
end.should raise_error(Encoding::CompatibilityError)
|
||||
end
|
||||
it "raises an Encoding::CompatibilityError if the encodings are incompatible" do
|
||||
pat = "ア".encode Encoding::EUC_JP
|
||||
lambda do
|
||||
"あれ".center 5, pat
|
||||
end.should raise_error(Encoding::CompatibilityError)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue