blob: fc70c7ac158a5af807d412017856c73fb460a0c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#! /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
SemVer.should be_valid Puppet.version
end
end
Puppet::Util::Log.eachlevel do |level|
it "should have a method for sending '#{level}' logs" do
Puppet.should 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
ENV["PATH"].should == newpath
end
it "should change $LOAD_PATH when :libdir changes" do
one = tmpdir('load-path-one')
two = tmpdir('load-path-two')
one.should_not == two
Puppet[:libdir] = one
$LOAD_PATH.should include one
$LOAD_PATH.should_not include two
Puppet[:libdir] = two
$LOAD_PATH.should_not include one
$LOAD_PATH.should include two
end
end
|