summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/http/shared
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/net-http/http/shared')
-rw-r--r--spec/ruby/library/net-http/http/shared/request_get.rb4
-rw-r--r--spec/ruby/library/net-http/http/shared/request_head.rb10
-rw-r--r--spec/ruby/library/net-http/http/shared/request_post.rb4
-rw-r--r--spec/ruby/library/net-http/http/shared/request_put.rb4
-rw-r--r--spec/ruby/library/net-http/http/shared/started.rb6
-rw-r--r--spec/ruby/library/net-http/http/shared/version_1_1.rb2
-rw-r--r--spec/ruby/library/net-http/http/shared/version_1_2.rb2
7 files changed, 16 insertions, 16 deletions
diff --git a/spec/ruby/library/net-http/http/shared/request_get.rb b/spec/ruby/library/net-http/http/shared/request_get.rb
index d25f32049b..4f2f152ea4 100644
--- a/spec/ruby/library/net-http/http/shared/request_get.rb
+++ b/spec/ruby/library/net-http/http/shared/request_get.rb
@@ -17,7 +17,7 @@ describe :net_http_request_get, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request")
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
@@ -35,7 +35,7 @@ describe :net_http_request_get, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request") {}
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
end
diff --git a/spec/ruby/library/net-http/http/shared/request_head.rb b/spec/ruby/library/net-http/http/shared/request_head.rb
index 78b555884b..a5fe787d32 100644
--- a/spec/ruby/library/net-http/http/shared/request_head.rb
+++ b/spec/ruby/library/net-http/http/shared/request_head.rb
@@ -12,30 +12,30 @@ describe :net_http_request_head, shared: true do
describe "when passed no block" do
it "sends a head request to the passed path and returns the response" do
response = @http.send(@method, "/request")
- response.body.should be_nil
+ response.body.should == nil
end
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request")
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
describe "when passed a block" do
it "sends a head request to the passed path and returns the response" do
response = @http.send(@method, "/request") {}
- response.body.should be_nil
+ response.body.should == nil
end
it "yields the response to the passed block" do
@http.send(@method, "/request") do |response|
- response.body.should be_nil
+ response.body.should == nil
end
end
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request") {}
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
end
diff --git a/spec/ruby/library/net-http/http/shared/request_post.rb b/spec/ruby/library/net-http/http/shared/request_post.rb
index e832411c48..73cfd577cf 100644
--- a/spec/ruby/library/net-http/http/shared/request_post.rb
+++ b/spec/ruby/library/net-http/http/shared/request_post.rb
@@ -17,7 +17,7 @@ describe :net_http_request_post, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request", "test=test")
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
@@ -35,7 +35,7 @@ describe :net_http_request_post, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request", "test=test") {}
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
end
diff --git a/spec/ruby/library/net-http/http/shared/request_put.rb b/spec/ruby/library/net-http/http/shared/request_put.rb
index 3b902f4957..3b64d7e055 100644
--- a/spec/ruby/library/net-http/http/shared/request_put.rb
+++ b/spec/ruby/library/net-http/http/shared/request_put.rb
@@ -17,7 +17,7 @@ describe :net_http_request_put, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request", "test=test")
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
@@ -35,7 +35,7 @@ describe :net_http_request_put, shared: true do
it "returns a Net::HTTPResponse object" do
response = @http.send(@method, "/request", "test=test") {}
- response.should be_kind_of(Net::HTTPResponse)
+ response.should.is_a?(Net::HTTPResponse)
end
end
end
diff --git a/spec/ruby/library/net-http/http/shared/started.rb b/spec/ruby/library/net-http/http/shared/started.rb
index 9ff6272c31..0ab18a4e83 100644
--- a/spec/ruby/library/net-http/http/shared/started.rb
+++ b/spec/ruby/library/net-http/http/shared/started.rb
@@ -11,16 +11,16 @@ describe :net_http_started_p, shared: true do
it "returns true when self has been started" do
@http.start
- @http.send(@method).should be_true
+ @http.send(@method).should == true
end
it "returns false when self has not been started yet" do
- @http.send(@method).should be_false
+ @http.send(@method).should == false
end
it "returns false when self has been stopped again" do
@http.start
@http.finish
- @http.send(@method).should be_false
+ @http.send(@method).should == false
end
end
diff --git a/spec/ruby/library/net-http/http/shared/version_1_1.rb b/spec/ruby/library/net-http/http/shared/version_1_1.rb
index db3d6a986d..84e7264eab 100644
--- a/spec/ruby/library/net-http/http/shared/version_1_1.rb
+++ b/spec/ruby/library/net-http/http/shared/version_1_1.rb
@@ -1,6 +1,6 @@
describe :net_http_version_1_1_p, shared: true do
it "returns the state of net/http 1.1 features" do
Net::HTTP.version_1_2
- Net::HTTP.send(@method).should be_false
+ Net::HTTP.send(@method).should == false
end
end
diff --git a/spec/ruby/library/net-http/http/shared/version_1_2.rb b/spec/ruby/library/net-http/http/shared/version_1_2.rb
index b044182c60..dcf5419704 100644
--- a/spec/ruby/library/net-http/http/shared/version_1_2.rb
+++ b/spec/ruby/library/net-http/http/shared/version_1_2.rb
@@ -1,6 +1,6 @@
describe :net_http_version_1_2_p, shared: true do
it "returns the state of net/http 1.2 features" do
Net::HTTP.version_1_2
- Net::HTTP.send(@method).should be_true
+ Net::HTTP.send(@method).should == true
end
end