Sha256: 78bced5c5b94a7dc38083c119b434437016092496bb54ad2c5900e7671149e92

Contents?: true

Size: 1.71 KB

Versions: 64

Compression:

Stored size: 1.71 KB

Contents

#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet'
require 'puppet_spec/files'
require 'semver'

describe Puppet do
  include PuppetSpec::Files

  context "#version" do
    it "should be valid semver" do
      expect(SemVer).to be_valid Puppet.version
    end
  end

  Puppet::Util::Log.eachlevel do |level|
    it "should have a method for sending '#{level}' logs" do
      expect(Puppet).to respond_to(level)
    end
  end

  it "should be able to change the path" do
    newpath = ENV["PATH"] + File::PATH_SEPARATOR + "/something/else"
    Puppet[:path] = newpath
    expect(ENV["PATH"]).to eq(newpath)
  end

  it "should change $LOAD_PATH when :libdir changes" do
    one = tmpdir('load-path-one')
    two = tmpdir('load-path-two')
    expect(one).not_to eq(two)

    Puppet[:libdir] = one
    expect($LOAD_PATH).to include one
    expect($LOAD_PATH).not_to include two

    Puppet[:libdir] = two
    expect($LOAD_PATH).not_to include one
    expect($LOAD_PATH).to include two
  end

  context "Puppet::OLDEST_RECOMMENDED_RUBY_VERSION" do
    it "should have an oldest recommended ruby version constant" do
      expect(Puppet::OLDEST_RECOMMENDED_RUBY_VERSION).not_to be_nil
    end

    it "should be a string" do
      expect(Puppet::OLDEST_RECOMMENDED_RUBY_VERSION).to be_a_kind_of(String)
    end

    it "should match a semver version" do
      expect(SemVer).to be_valid(Puppet::OLDEST_RECOMMENDED_RUBY_VERSION)
    end
  end

  context "newtype" do
    it "should issue a deprecation warning" do
      subject.expects(:deprecation_warning).with("Creating sometype via Puppet.newtype is deprecated and will be removed in a future release. Use Puppet::Type.newtype instead.")
      subject.newtype("sometype")
    end
  end
end

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
puppet-4.10.12 spec/unit/puppet_spec.rb
puppet-4.10.12-x86-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.12-x64-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.12-universal-darwin spec/unit/puppet_spec.rb
puppet-4.10.11 spec/unit/puppet_spec.rb
puppet-4.10.11-x86-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.11-x64-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.11-universal-darwin spec/unit/puppet_spec.rb
puppet-4.10.10 spec/unit/puppet_spec.rb
puppet-4.10.10-x86-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.10-x64-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.10-universal-darwin spec/unit/puppet_spec.rb
puppet-4.10.9 spec/unit/puppet_spec.rb
puppet-4.10.9-x86-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.9-x64-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.9-universal-darwin spec/unit/puppet_spec.rb
puppet-4.10.8 spec/unit/puppet_spec.rb
puppet-4.10.8-x86-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.8-x64-mingw32 spec/unit/puppet_spec.rb
puppet-4.10.8-universal-darwin spec/unit/puppet_spec.rb