Sha256: a05d00ee8b27d5904a942978232bcb7a0114a06222c5d7eedf268ef1d279eaf8

Contents?: true

Size: 1.38 KB

Versions: 4

Compression:

Stored size: 1.38 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
require 'connection.rb' # Load class ForjConnection
require 'forj-account.rb'

# Initialize forj paths
ensure_forj_dirs_exists()

include Logging

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


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

4 entries across 4 versions & 1 rubygems

Version Path
forj-0.0.43 spec/connection_spec.rb
forj-0.0.42 spec/connection_spec.rb
forj-0.0.41 spec/connection_spec.rb
forj-0.0.40 spec/connection_spec.rb