get all the rackspace files specs passing

This commit is contained in:
Wesley Beary 2009-11-05 23:54:10 -08:00
parent 4225565218
commit a6b3d365f0
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ module Fog
:expects => params[:expects],
:headers => {
'X-Auth-Token' => @auth_token
},
}.merge!(params[:headers] || {}),
:host => @cdn_host,
:method => params[:method],
:path => "#{@cdn_path}/#{params[:path]}",
@ -74,7 +74,7 @@ module Fog
:expects => params[:expects],
:headers => {
'X-Auth-Token' => @auth_token
},
}.merge!(params[:headers] || {}),
:host => @storage_host,
:method => params[:method],
:path => "#{@storage_path}/#{params[:path]}",

View File

@ -8,7 +8,7 @@ describe 'Rackspace::Files.put_object' do
end
after(:each) do
files.delete_object('object_name')
files.delete_object('container_name', 'object_name')
files.delete_container('container_name')
end