summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/file/stat/dev_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/file/stat/dev_spec.rb')
-rw-r--r--spec/rubyspec/core/file/stat/dev_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/core/file/stat/dev_spec.rb b/spec/rubyspec/core/file/stat/dev_spec.rb
deleted file mode 100644
index 3cdc704fd7..0000000000
--- a/spec/rubyspec/core/file/stat/dev_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require File.expand_path('../../../../spec_helper', __FILE__)
-
-describe "File::Stat#dev" do
- before :each do
- @name = tmp("file.txt")
- touch(@name)
- end
- after :each do
- rm_r @name
- end
-
- it "returns the number of the device on which the file exists" do
- File.stat(@name).dev.should be_kind_of(Integer)
- end
-end