1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
describe :dir_open, :shared => true do
it "returns a Dir instance representing the specified directory" do
dir = Dir.send(@method, DirSpecs.mock_dir)
dir.should be_kind_of(Dir)
dir.close
end
it "raises a SystemCallError if the directory does not exist" do
lambda do
Dir.send @method, DirSpecs.nonexistent
end.should raise_error(SystemCallError)
end
it "may take a block which is yielded to with the Dir instance" do
Dir.send(@method, DirSpecs.mock_dir) {|dir| dir.should be_kind_of(Dir)}
end
it "returns the value of the block if a block is given" do
Dir.open(DirSpecs.mock_dir) {|dir| :value }.should == :value
end
it "closes the Dir instance when the block exits if given a block" do
closed_dir = Dir.send(@method, DirSpecs.mock_dir) { |dir| dir }
lambda { closed_dir.close }.should raise_error(IOError)
end
it "closes the Dir instance when the block exits the block even due to an exception" do
@closed_dir = nil
lambda do
Dir.send(@method, DirSpecs.mock_dir) do |dir|
@closed_dir = dir
raise
end
end.should raise_error
lambda { @closed_dir.close }.should raise_error(IOError)
end
ruby_version_is ""..."1.9" do
it "calls #to_str on non-String arguments" do
p = mock('path')
p.should_receive(:to_str).and_return(DirSpecs.mock_dir)
Dir.send(@method, p) { true }
end
end
ruby_version_is "1.9" do
it "calls #to_path on non-String arguments" do
p = mock('path')
p.should_receive(:to_path).and_return(DirSpecs.mock_dir)
Dir.send(@method, p) { true }
end
it "accepts an options Hash" do
dir = Dir.send(@method, DirSpecs.mock_dir, :encoding => "utf-8") {|dir| dir }
dir.should be_kind_of(Dir)
end
end
end
|