Sha256: 8912762bdd619a56e61fed6b1088161f51a94eb38f0b670325ac409e1d46b881

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

#!/usr/bin/env ruby
# encoding: UTF-8

# (c) Copyright 2014 Hewlett-Packard Development Company, L.P.
#
#    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 'rubygems'
require 'spec_helper'

require 'fog'

$APP_PATH = File.dirname(__FILE__)
$LIB_PATH = File.expand_path(File.join(File.dirname($APP_PATH),'lib'))
$FORJ_DATA_PATH= File.expand_path('~/.forj')

$LOAD_PATH << './lib'

require 'forj-config.rb' # Load class ForjConfig
require 'log.rb' # Load default loggers

include Logging

$FORJ_LOGGER=ForjLog.new('forj-rspec.log', Logger::FATAL)

require 'connection.rb' # Load class ForjConnection

describe 'Module: forj-connection' do

  it 'should connect to hpcloud (smoke test)' do

    Fog.mock!
    conn = ForjConnection.new(ForjConfig.new())
    expect(conn).to be

    Fog::Mock.reset
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
forj-0.0.39 spec/connection_spec.rb
forj-0.0.38 spec/connection_spec.rb
forj-0.0.37 spec/connection_spec.rb
forj-0.0.36 spec/connection_spec.rb
forj-0.0.35 spec/connection_spec.rb