Created
February 5, 2014 11:37
-
-
Save sustr4/8821822 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before(:each) do | |
require './spec/occi/api/client/auth_details.rb' | |
@client = Occi::Api::Client::ClientHttp.new({ | |
:endpoint => in_endpoint, | |
:auth => in_auth, | |
:log => { :out => "/dev/null", | |
:level => Occi::Log::DEBUG }, | |
:auto_connect => true, | |
:media_type => "text/plain,text/occi" | |
}) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in_endpoint = 'https://localhost:3300' | |
in_auth = { :type => "none" } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment