summaryrefslogtreecommitdiff
path: root/spec/unit/mixin/api_version_request_handling_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/mixin/api_version_request_handling_spec.rb')
-rw-r--r--spec/unit/mixin/api_version_request_handling_spec.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/spec/unit/mixin/api_version_request_handling_spec.rb b/spec/unit/mixin/api_version_request_handling_spec.rb
index 5cbad7efa0..cabc85439c 100644
--- a/spec/unit/mixin/api_version_request_handling_spec.rb
+++ b/spec/unit/mixin/api_version_request_handling_spec.rb
@@ -30,8 +30,8 @@ describe Chef::Mixin::ApiVersionRequestHandling do
let(:exception) { Net::HTTPServerException.new("405 Something Else", response) }
it "returns nil" do
- expect(object.server_client_api_version_intersection(exception, default_supported_client_versions)).
- to be_nil
+ expect(object.server_client_api_version_intersection(exception, default_supported_client_versions))
+ .to be_nil
end
end # when the response code is not 406
@@ -42,8 +42,8 @@ describe Chef::Mixin::ApiVersionRequestHandling do
context "when x-ops-server-api-version header does not exist" do
it "returns nil" do
- expect(object.server_client_api_version_intersection(exception, default_supported_client_versions)).
- to be_nil
+ expect(object.server_client_api_version_intersection(exception, default_supported_client_versions))
+ .to be_nil
end
end # when x-ops-server-api-version header does not exist
@@ -64,13 +64,13 @@ describe Chef::Mixin::ApiVersionRequestHandling do
context "when there is no intersection between client and server versions" do
shared_examples_for "no intersection between client and server versions" do
it "return an array" do
- expect(object.server_client_api_version_intersection(exception, supported_client_versions)).
- to be_a_kind_of(Array)
+ expect(object.server_client_api_version_intersection(exception, supported_client_versions))
+ .to be_a_kind_of(Array)
end
it "returns an empty array" do
- expect(object.server_client_api_version_intersection(exception, supported_client_versions).length).
- to eq(0)
+ expect(object.server_client_api_version_intersection(exception, supported_client_versions).length)
+ .to eq(0)
end
end
@@ -94,8 +94,8 @@ describe Chef::Mixin::ApiVersionRequestHandling do
let(:supported_client_versions) { [1, 2, 3, 4, 5] }
it "includes all of the intersection" do
- expect(object.server_client_api_version_intersection(exception, supported_client_versions)).
- to eq([2, 3, 4])
+ expect(object.server_client_api_version_intersection(exception, supported_client_versions))
+ .to eq([2, 3, 4])
end
end # when multiple versions intersect
@@ -103,8 +103,8 @@ describe Chef::Mixin::ApiVersionRequestHandling do
let(:supported_client_versions) { [0, 1, 2] }
it "includes the intersection" do
- expect(object.server_client_api_version_intersection(exception, supported_client_versions)).
- to eq([2])
+ expect(object.server_client_api_version_intersection(exception, supported_client_versions))
+ .to eq([2])
end
end # when only the min client version intersects
@@ -112,8 +112,8 @@ describe Chef::Mixin::ApiVersionRequestHandling do
let(:supported_client_versions) { [4, 5, 6] }
it "includes the intersection" do
- expect(object.server_client_api_version_intersection(exception, supported_client_versions)).
- to eq([4])
+ expect(object.server_client_api_version_intersection(exception, supported_client_versions))
+ .to eq([4])
end
end # when only the max client version intersects