summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/file/shared/read.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/file/shared/read.rb')
-rw-r--r--spec/rubyspec/core/file/shared/read.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/core/file/shared/read.rb b/spec/rubyspec/core/file/shared/read.rb
deleted file mode 100644
index 916a6222bf..0000000000
--- a/spec/rubyspec/core/file/shared/read.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-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