summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/tempfile/path_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/tempfile/path_spec.rb')
-rw-r--r--spec/rubyspec/library/tempfile/path_spec.rb26
1 files changed, 0 insertions, 26 deletions
diff --git a/spec/rubyspec/library/tempfile/path_spec.rb b/spec/rubyspec/library/tempfile/path_spec.rb
deleted file mode 100644
index f25e902872..0000000000
--- a/spec/rubyspec/library/tempfile/path_spec.rb
+++ /dev/null
@@ -1,26 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-require 'tempfile'
-
-describe "Tempfile#path" do
- before :each do
- @tempfile = Tempfile.new("specs", tmp(""))
- end
-
- after :each do
- @tempfile.close!
- end
-
- it "returns the path to the tempfile" do
- tmpdir = tmp("")
- path = @tempfile.path
-
- platform_is :windows do
- # on Windows, both types of slashes are OK,
- # but the tmp helper always uses '/'
- path.gsub!('\\', '/')
- end
-
- path[0, tmpdir.length].should == tmpdir
- path.should include("specs")
- end
-end