test/test_http.rb in zold-0.14.8 vs test/test_http.rb in zold-0.14.9
- old
+ new
@@ -1,5 +1,7 @@
+# frozen_string_literal: true
+
# Copyright (c) 2018 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
@@ -29,23 +31,23 @@
# Copyright:: Copyright (c) 2018 Yegor Bugayenko
# License:: MIT
class TestHttp < Minitest::Test
def test_pings_broken_uri
stub_request(:get, 'http://bad-host/').to_return(status: 500)
- res = Zold::Http.new('http://bad-host/').get
+ res = Zold::Http.new(uri: 'http://bad-host/', score: nil).get
assert_equal('500', res.code)
assert_equal('', res.body)
end
def test_pings_with_exception
stub_request(:get, 'http://exception/').to_return { raise 'Intentionally' }
- res = Zold::Http.new('http://exception/').get
+ res = Zold::Http.new(uri: 'http://exception/', score: nil).get
assert_equal('599', res.code)
assert(res.body.include?('Intentionally'))
end
def test_pings_live_uri
stub_request(:get, 'http://good-host/').to_return(status: 200)
- res = Zold::Http.new('http://good-host/').get
+ res = Zold::Http.new(uri: 'http://good-host/', score: nil).get
assert_equal('200', res.code)
end
end