testlab 0.3.1 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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