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

[dynect] remove should usage in tests

This commit is contained in:
geemus 2013-05-15 09:42:36 -05:00
parent 451d257459
commit 96e41e0cb6

View file

@ -175,7 +175,7 @@ Shindo.tests('Dynect::dns | DNS requests', ['dynect', 'dns']) do
old_mock_value = Excon.defaults[:mock]
Excon.stubs.clear
tests("returns final response from a complete job") do
tests("returns final response from a complete job").returns({"status" => "success"}) do
begin
Excon.defaults[:mock] = true
@ -184,14 +184,14 @@ Shindo.tests('Dynect::dns | DNS requests', ['dynect', 'dns']) do
Excon.stub({:method => :get, :path => "/REST/Zone/example.com"}, {:status => 307, :body => '/REST/Job/150576635', :headers => {'Content-Type' => 'text/html', 'Location' => '/REST/Job/150576635'}})
Excon.stub({:method => :get, :path => "/REST/Job/150576635"}, {:status => 307, :body => '{"status":"success"}', :headers => {'Content-Type' => 'application/json'}})
Fog::DNS::Dynect::Real.new.request(:method => :get, :path => "Zone/example.com").body.should == { "status" => "success" }
Fog::DNS::Dynect::Real.new.request(:method => :get, :path => "Zone/example.com").body
ensure
Excon.stubs.clear
Excon.defaults[:mock] = old_mock_value
end
end
tests("passes expects through when polling a job") do
tests("passes expects through when polling a job").returns({"status" => "success"}) do
begin
Excon.defaults[:mock] = true
@ -200,7 +200,7 @@ Shindo.tests('Dynect::dns | DNS requests', ['dynect', 'dns']) do
Excon.stub({:method => :get, :path => "/REST/Zone/example.com"}, {:status => 307, :body => '/REST/Job/150576635', :headers => {'Content-Type' => 'text/html', 'Location' => '/REST/Job/150576635'}})
Excon.stub({:method => :get, :path => "/REST/Job/150576635"}, {:status => 404, :body => '{"status":"success"}', :headers => {'Content-Type' => 'application/json'}})
Fog::DNS::Dynect::Real.new.request(:method => :get, :expects => 404, :path => "Zone/example.com").body.should == { "status" => "success" }
Fog::DNS::Dynect::Real.new.request(:method => :get, :expects => 404, :path => "Zone/example.com").body
ensure
Excon.stubs.clear
Excon.defaults[:mock] = old_mock_value