Sha256: f5f49940a10fb35ddff979edcc6ba7aab171fa4ef3c050b32566405e233a0b3c

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

#
# Author: cary@rightscale.com
# Copyright 2014 RightScale, Inc.
#
# 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 'spec_helper'

describe RightApiHelper::Instances do

  before(:all) do
    # Get API session
    VCR.use_cassette('right_api_session') do
      session = RightApiHelper::Session.new
      session.should_receive(:setup_client_logging)
      @right_api_client = session.create_client_from_file("~/.right_api_client/login.yml")
    end
    VCR.use_cassette('right_api_general') do
      @helper = RightApiHelper::Instances.new(@right_api_client)
    end
  end

  it "gets all instances in account" do
    VCR.use_cassette('right_api_general') do
      instances = @helper.get_instances
      instances.should_not == nil
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
right_api_helper-1.1.2 spec/instances_spec.rb
right_api_helper-1.1.1 spec/instances_spec.rb
right_api_helper-1.1.0 spec/instances_spec.rb
right_api_helper-1.0.0 spec/instances_spec.rb
right_api_helper-0.0.2 spec/instances_spec.rb
right_api_helper-0.0.1 spec/instances_spec.rb