lib/testlab/provisioners/chef.rb in testlab-0.1.0 vs lib/testlab/provisioners/chef.rb in testlab-0.2.0
- old
+ new
@@ -9,11 +9,17 @@
#
# @author Zachary Patten <zachary@jovelabs.net>
class Chef
def initialize(config={}, ui=nil)
- @config = config
+ @config = (config || Hash.new)
@ui = (ui || TestLab.ui)
+ end
+
+ def setup(container)
+ end
+
+ def teardown(container)
end
end
end