summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/shared/read.rb
blob: 7fff7f29d6f6b417c3dd6a179902df8b8293ca01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../dir/fixtures/common'

describe :file_read_directory, shared: true do
  platform_is :darwin, :linux, :openbsd, :windows do
    it "raises an Errno::EISDIR when passed a path that is a directory" do
      lambda { @object.send(@method, ".") }.should raise_error(Errno::EISDIR)
    end
  end

  platform_is :freebsd, :netbsd do
    it "does not raises any exception when passed a path that is a directory" do
      lambda { @object.send(@method, ".") }.should_not raise_error
    end
  end
end