Skip to content

Instantly share code, notes, and snippets.

@petems
Created March 12, 2014 18:22
Show Gist options
  • Save petems/9513104 to your computer and use it in GitHub Desktop.
Save petems/9513104 to your computer and use it in GitHub Desktop.
Puppet test
it "should return install_options as nil by default" do
provider.expects(:execute).with(anything, anything, anything, anything, anything, nil).returns ""
provider.install
end
it "should accept install_options" do
resource[:install_options] = "--force"
provider.expects(:execute).with(anything, anything, anything, anything, anything, '--force').returns ""
provider.install
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment