summaryrefslogtreecommitdiff
path: root/spec/ruby/core/file/shared/read.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/file/shared/read.rb')
-rw-r--r--spec/ruby/core/file/shared/read.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/ruby/core/file/shared/read.rb b/spec/ruby/core/file/shared/read.rb
new file mode 100644
index 0000000000..916a6222bf
--- /dev/null
+++ b/spec/ruby/core/file/shared/read.rb
@@ -0,0 +1,15 @@
+require File.expand_path('../../../dir/fixtures/common', __FILE__)
+
+describe :file_read_directory, shared: true do
+ platform_is :darwin, :linux, :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 :bsd 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