1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Apply the pending modifier before Storage.new.

This commit is contained in:
Ash Wilson 2014-03-21 09:14:30 -04:00
parent 1d7d698a13
commit e43fef3aab

View file

@ -42,7 +42,6 @@ Shindo.tests('Fog::Storage[:openstack] | object requests', ["openstack"]) do
end
def test_temp_url(url_s, time, desired_scheme)
pending if Fog.mocking?
object_url = URI.parse(url_s)
query_params = URI.decode_www_form(object_url.query)
@ -59,12 +58,14 @@ Shindo.tests('Fog::Storage[:openstack] | object requests', ["openstack"]) do
end
tests("#get_object_http_url('directory.identity', 'fog_object', expiration timestamp)").succeeds do
pending if Fog.mocking?
ts = Time.at(1395343213)
url_s = Fog::Storage[:openstack].get_object_http_url(@directory.identity, 'fog_object', ts)
test_temp_url(url_s, ts, 'http')
end
tests("#get_object_https_url('directory.identity', 'fog_object', expiration timestamp)").succeeds do
pending if Fog.mocking?
ts = Time.at(1395343215)
url_s = Fog::Storage[:openstack].get_object_https_url(@directory.identity, 'fog_object', ts)
test_temp_url(url_s, ts, 'https')