testlab 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,27 +0,0 @@
1
- class TestLab
2
-
3
- class Provisioner
4
-
5
- # Chef Provisioner Error Class
6
- class ChefError < ProvisionerError; end
7
-
8
- # Chef Provisioner Class
9
- #
10
- # @author Zachary Patten <zachary AT jovelabs DOT com>
11
- class Chef
12
-
13
- def initialize(config={}, ui=nil)
14
- @config = (config || Hash.new)
15
- @ui = (ui || TestLab.ui)
16
- end
17
-
18
- def setup(container)
19
- end
20
-
21
- def teardown(container)
22
- end
23
-
24
- end
25
-
26
- end
27
- end