aboutsummaryrefslogtreecommitdiff
path: root/test/tc_mauve_generic_http_api_client.rb
diff options
context:
space:
mode:
authorAlex Young <alex@bytemark.co.uk>2015-02-23 19:22:33 +0000
committerAlex Young <alex@bytemark.co.uk>2015-02-23 19:22:33 +0000
commit16ba9f08109ddb911e9aba8518a93d3df710a46b (patch)
tree0d7835a257ad5a4c47af47f6a2f7b67fe076f287 /test/tc_mauve_generic_http_api_client.rb
parentb212665b4e5ecaf9652ab7d3cfcd20597b3ef436 (diff)
Get tests passing on ruby 1.9.3-p551
Diffstat (limited to 'test/tc_mauve_generic_http_api_client.rb')
-rw-r--r--test/tc_mauve_generic_http_api_client.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tc_mauve_generic_http_api_client.rb b/test/tc_mauve_generic_http_api_client.rb
index d8accfa..f3eaf46 100644
--- a/test/tc_mauve_generic_http_api_client.rb
+++ b/test/tc_mauve_generic_http_api_client.rb
@@ -6,7 +6,7 @@ require 'mauve/configuration_builder'
require 'mauve/configuration'
require 'webmock'
-class TcMauveGenericApiClient < Mauve::UnitTest
+class TcMauveGenericApiClient < Mauve::UnitTest
include WebMock::API
include Mauve
@@ -27,7 +27,7 @@ class TcMauveGenericApiClient < Mauve::UnitTest
url = "http://localhost/"
#
- # This sets up two redirects, followed by the answer (below)
+ # This sets up two redirects, followed by the answer (below)
#
2.times do |x|
next_url = url + "#{x}/"
@@ -60,7 +60,7 @@ class TcMauveGenericApiClient < Mauve::UnitTest
#
logger_pop
end
-
+
def test_do_get_with_cache
url = "http://localhost/"
@@ -68,7 +68,7 @@ class TcMauveGenericApiClient < Mauve::UnitTest
# This stubs the request to give out the time
#
stub_request(:get, url).
- to_return( lambda{ {:status => 200, :body => YAML.dump(Time.now), :headers => {}} } )
+ to_return( Proc.new{ {:status => 200, :body => YAML.dump(Time.now), :headers => {}} } )
#
# This reponse should not be cached, the cache-until paramter is "now"