blob: 8b31658b861c385257a30db3b12f9854a1b59ffd (
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
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
provider_class = Puppet::Type.type(:user).provider(:hpuxuseradd)
describe provider_class do
# left from the useradd test... I have no clue what I'm doing.
before do
@resource = stub("resource", :name => "myuser", :managehome? => nil)
@provider = provider_class.new(@resource)
end
it "should add -F when modifying a user" do
@resource.stubs(:should).returns "fakeval"
@resource.stubs(:[]).returns "fakeval"
@provider.expects(:execute).with { |args| args.include?("-F") }
@provider.modify
end
it "should add -F when deleting a user" do
@resource.stubs(:should).returns "fakeval"
@resource.stubs(:[]).returns "fakeval"
@provider.expects(:execute).with { |args| args.include?("-F") }
@provider.delete
end
end
|