Sha256: 6262e7607a05f77b953672957a139bb64b1a95453e7d36d78b7399dee4ee00d5

Contents?: true

Size: 1.62 KB

Versions: 17

Compression:

Stored size: 1.62 KB

Contents

#
# Copyright (C) 2009  Red Hat, Inc.
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.  The
# ASF licenses this file to you 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 'yaml'
require 'fileutils'

api_host = ENV['API_HOST']
( api_host = 'localhost' ) if api_host.nil?
( api_host = 'localhost' ) if api_host == ''

api_port = ENV['API_PORT']
( api_port = 3001 ) if api_port.nil?
( api_port = 3001 ) if api_port == ''

API_HOST = api_host
API_PORT = api_port
API_PATH = '/api'

API_URL = "http://#{API_HOST}:#{API_PORT}#{API_PATH}"
API_URL_REDIRECT = "http://#{API_HOST}:#{API_PORT}"
API_NAME     = 'mockuser'
API_PASSWORD = 'mockpassword'

$: << File.dirname( __FILE__ ) + '/../lib'
require 'deltacloud'

def clean_fixtures
  FileUtils.rm_rf( File.dirname( __FILE__ ) + '/data' )
end

def reload_fixtures
  clean_fixtures
  FileUtils.cp_r( File.dirname( __FILE__) + '/fixtures', File.dirname( __FILE__ ) + '/data' )
end

$: << File.dirname( __FILE__ )
require 'shared/resources'

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
deltacloud-client-1.0.0 specs/spec_helper.rb
deltacloud-client-0.5.0 specs/spec_helper.rb
deltacloud-client-0.4.1 specs/spec_helper.rb
deltacloud-client-0.4.0 specs/spec_helper.rb
deltacloud-client-0.3.1 specs/spec_helper.rb
deltacloud-client-0.3.0 specs/spec_helper.rb
steamcannon-deltacloud-client-0.1.1.1 specs/spec_helper.rb
deltacloud-client-0.1.1 specs/spec_helper.rb
steamcannon-deltacloud-client-0.1.0.5 specs/spec_helper.rb
steamcannon-deltacloud-client-0.1.0.4 specs/spec_helper.rb
steamcannon-deltacloud-client-0.1.0.3 specs/spec_helper.rb
steamcannon-deltacloud-client-0.1.0.2 specs/spec_helper.rb
deltacloud-client-0.1.0 specs/spec_helper.rb
steamcannon-deltacloud-client-0.0.9.8.1-java specs/spec_helper.rb
steamcannon-deltacloud-client-0.0.9.8.1 specs/spec_helper.rb
steamcannon-deltacloud-client-0.0.9.8-java specs/spec_helper.rb
steamcannon-deltacloud-client-0.0.9.8 specs/spec_helper.rb