From a0804ae29a4d2be7b3f15015f87f5b274e95c7bd Mon Sep 17 00:00:00 2001 From: Rick Bradley Date: Wed, 2 Apr 2008 20:45:51 -0500 Subject: adding rest_connection_details helper to Indirector::REST -- will need to be overridden to lookup the real connection details --- spec/unit/indirector/rest.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec') diff --git a/spec/unit/indirector/rest.rb b/spec/unit/indirector/rest.rb index 38ab0d634..dabb928cf 100755 --- a/spec/unit/indirector/rest.rb +++ b/spec/unit/indirector/rest.rb @@ -20,6 +20,18 @@ describe Puppet::Indirector::REST do @searcher = @rest_class.new end + describe "when locating the rest connection" do + it 'should look somewhere meaningful for connection details' + + it "should return a host" do + @searcher.rest_connection_details[:host].should == '127.0.0.1' + end + + it "should return a port" do + @searcher.rest_connection_details[:port].should == 34343 + end + end + describe "when doing a network fetch" do it "should escape the provided path" it "should look up the appropriate remote server" -- cgit