-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4ec813
commit ec4139e
Showing
4 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
require_relative '../../spec_helper' | ||
require_relative 'fixtures/classes' | ||
|
||
describe "String#include? with String" do | ||
it "returns true if self contains other_str" do | ||
"hello".include?("lo").should == true | ||
"hello".include?("ol").should == false | ||
end | ||
|
||
it "ignores subclass differences" do | ||
"hello".include?(StringSpecs::MyString.new("lo")).should == true | ||
StringSpecs::MyString.new("hello").include?("lo").should == true | ||
StringSpecs::MyString.new("hello").include?(StringSpecs::MyString.new("lo")).should == true | ||
end | ||
|
||
it "tries to convert other to string using to_str" do | ||
other = mock('lo') | ||
other.should_receive(:to_str).and_return("lo") | ||
|
||
"hello".include?(other).should == true | ||
end | ||
|
||
it "raises a TypeError if other can't be converted to string" do | ||
-> { "hello".include?([]) }.should raise_error(TypeError) | ||
-> { "hello".include?('h'.ord) }.should raise_error(TypeError) | ||
-> { "hello".include?(mock('x')) }.should raise_error(TypeError) | ||
end | ||
|
||
# NATFIXME: Implement EUC-JP encoding | ||
xit "raises an Encoding::CompatibilityError if the encodings are incompatible" do | ||
pat = "ア".encode Encoding::EUC_JP | ||
-> do | ||
"あれ".include?(pat) | ||
end.should raise_error(Encoding::CompatibilityError) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters