summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/noop_metaparam_spec.rb
blob: 2c4b6dc49822a86962c6a0669f3d7bad1fb072cb (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
#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../spec_helper'

require 'puppet/type'

describe Puppet::Type.type(:file).attrclass(:noop) do
    before do
        Puppet.settings.stubs(:use)
        @file = Puppet::Type.newfile :path => "/what/ever"
    end

    it "should accept true as a value" do
        lambda { @file[:noop] = true }.should_not raise_error
    end

    it "should accept false as a value" do
        lambda { @file[:noop] = false }.should_not raise_error
    end

    describe "when set on a resource" do
        it "should default to the :noop setting" do
            Puppet.settings.expects(:value).with(:noop).returns "myval"
            @file.noop.should == "myval"
        end

        it "should prefer true values from the attribute" do
            @file[:noop] = true
            @file.noop.should be_true
        end

        it "should prefer false values from the attribute" do
            @file[:noop] = false
            @file.noop.should be_false
        end
    end
end