describe do
before :each do
@tempfile = Tempfile.new(, tmp())
end
after :each do
@tempfile.close!
end
it 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()
end
end