summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCam Cope <ccope@brightcove.com>2014-03-27 13:59:51 -0400
committerBryan McLellan <btm@getchef.com>2014-06-05 12:53:08 -0700
commit91d21738b123a0380dfe3c41cac24ce1714fd4d7 (patch)
treec27f2615df0e769263a24818a05f3edb29fcd4da
parentca20fa49586078581068cefa1df52ba33b0acd24 (diff)
downloadchef-91d21738b123a0380dfe3c41cac24ce1714fd4d7.tar.gz
add tests for chef/http/basic_client
-rw-r--r--spec/unit/http/basic_client_spec.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/unit/http/basic_client_spec.rb b/spec/unit/http/basic_client_spec.rb
new file mode 100644
index 0000000000..4a81288131
--- /dev/null
+++ b/spec/unit/http/basic_client_spec.rb
@@ -0,0 +1,42 @@
+#
+# Author:: Cameron Cope (<ccope@brightcove.com>)
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require 'spec_helper'
+require 'chef/http/basic_client'
+
+describe "HTTP Connection" do
+
+ let(:uri) { URI("https://example.com:4443") }
+ subject { Chef::HTTP::BasicClient.new(uri) }
+
+ describe ".new" do
+ it "creates an instance" do
+ subject
+ end
+ end
+
+ describe "#build_http_client" do
+ it "should build an http client" do
+ subject.build_http_client
+ end
+
+ it "should set an open timeout" do
+ subject.build_http_client.open_timeout.should_not be_nil
+ end
+ end
+end
+