summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/file/path_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/file/path_spec.rb')
-rw-r--r--spec/rubyspec/core/file/path_spec.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/spec/rubyspec/core/file/path_spec.rb b/spec/rubyspec/core/file/path_spec.rb
deleted file mode 100644
index 5004e128cd..0000000000
--- a/spec/rubyspec/core/file/path_spec.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "File#path" do
- before :each do
- @name = tmp("file_path")
- end
-
- after :each do
- rm_r @name
- end
-
- it "returns the pathname used to create file as a string" do
- File.open(@name,'w') { |file| file.path.should == @name }
- end
-end
-
-describe "File.path" do
- before :each do
- @name = tmp("file_path")
- end
-
- after :each do
- rm_r @name
- end
-
- it "returns the full path for the given file" do
- File.path(@name).should == @name
- end
-end