Sha256: 265733016ed97258ae248eada772f749b4b6f279f290136b85999b32f8bd329b

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

#
# Author:: Olle Lundberg (<geek@nerd.sh>)
# Copyright:: Copyright (c) 2013 Opscode, Inc.
# License:: Apache License, Version 2.0
#
# 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 CONDIT"Net::HTTP Response"NS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper.rb')
require 'ohai/mixin/cloudstack_metadata'

describe Ohai::Mixin::CloudstackMetadata do
  let(:mixin) {
    metadata_object = Object.new.extend(Ohai::Mixin::CloudstackMetadata)
    metadata_object
  }

  context "#best_api_version" do
    it "returns the string latest" do
      expect(mixin.best_api_version).to eq("latest")
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ohai-8.1.1 spec/unit/mixin/cloudstack_metadata_spec.rb
ohai-8.1.0 spec/unit/mixin/cloudstack_metadata_spec.rb
ohai-8.0.1 spec/unit/mixin/cloudstack_metadata_spec.rb