1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
This commit is contained in:
Benoit Daloze 2019-07-27 12:40:09 +02:00
parent a06301b103
commit 5c276e1cc9
1247 changed files with 5316 additions and 5028 deletions

View file

@ -6,15 +6,15 @@ require_relative 'fixtures/utf-8-encoding'
describe "String#rindex with object" do
it "raises a TypeError if obj isn't a String, Fixnum or Regexp" do
not_supported_on :opal do
lambda { "hello".rindex(:sym) }.should raise_error(TypeError)
-> { "hello".rindex(:sym) }.should raise_error(TypeError)
end
lambda { "hello".rindex(mock('x')) }.should raise_error(TypeError)
-> { "hello".rindex(mock('x')) }.should raise_error(TypeError)
end
it "doesn't try to convert obj to an integer via to_int" do
obj = mock('x')
obj.should_not_receive(:to_int)
lambda { "hello".rindex(obj) }.should raise_error(TypeError)
-> { "hello".rindex(obj) }.should raise_error(TypeError)
end
it "tries to convert obj to a string via to_str" do
@ -190,7 +190,7 @@ describe "String#rindex with String" do
end
it "raises a TypeError when given offset is nil" do
lambda { "str".rindex("st", nil) }.should raise_error(TypeError)
-> { "str".rindex("st", nil) }.should raise_error(TypeError)
end
end
@ -344,7 +344,7 @@ describe "String#rindex with Regexp" do
end
it "raises a TypeError when given offset is nil" do
lambda { "str".rindex(/../, nil) }.should raise_error(TypeError)
-> { "str".rindex(/../, nil) }.should raise_error(TypeError)
end
it "returns the reverse character index of a multibyte character" do
@ -359,7 +359,7 @@ describe "String#rindex with Regexp" do
it "raises an Encoding::CompatibilityError if the encodings are incompatible" do
re = Regexp.new "".encode(Encoding::EUC_JP)
lambda do
-> do
"あれ".rindex re
end.should raise_error(Encoding::CompatibilityError)
end