summaryrefslogtreecommitdiff
path: root/chef/spec/data/run_context/cookbooks/test/definitions/new_animals.rb
blob: 5b00553cfe7d8134a5c274218d2a35513955f97c (plain)
1
2
3
4
5
6
7
8
9
define :new_dog, :is_cute => true do
  dog "#{params[:name]}" do
    cute params[:is_cute]
  end
end

define :new_badger do
  badger "#{params[:name]}"
end