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

@ -218,21 +218,21 @@ describe :file_fnmatch, shared: true do
end
it "raises a TypeError if the first and second arguments are not string-like" do
lambda { File.send(@method, nil, nil, 0, 0) }.should raise_error(ArgumentError)
lambda { File.send(@method, 1, 'some/thing') }.should raise_error(TypeError)
lambda { File.send(@method, 'some/thing', 1) }.should raise_error(TypeError)
lambda { File.send(@method, 1, 1) }.should raise_error(TypeError)
-> { File.send(@method, nil, nil, 0, 0) }.should raise_error(ArgumentError)
-> { File.send(@method, 1, 'some/thing') }.should raise_error(TypeError)
-> { File.send(@method, 'some/thing', 1) }.should raise_error(TypeError)
-> { File.send(@method, 1, 1) }.should raise_error(TypeError)
end
it "raises a TypeError if the third argument is not an Integer" do
lambda { File.send(@method, "*/place", "path/to/file", "flags") }.should raise_error(TypeError)
lambda { File.send(@method, "*/place", "path/to/file", nil) }.should raise_error(TypeError)
-> { File.send(@method, "*/place", "path/to/file", "flags") }.should raise_error(TypeError)
-> { File.send(@method, "*/place", "path/to/file", nil) }.should raise_error(TypeError)
end
it "does not raise a TypeError if the third argument can be coerced to an Integer" do
flags = mock("flags")
flags.should_receive(:to_int).and_return(10)
lambda { File.send(@method, "*/place", "path/to/file", flags) }.should_not raise_error
-> { File.send(@method, "*/place", "path/to/file", flags) }.should_not raise_error
end
it "matches multibyte characters" do