summaryrefslogtreecommitdiff
path: root/spec/classes/openvpn_init_spec.rb
diff options
context:
space:
mode:
authorJustin Lambert <jlambert@eml.cc>2013-01-11 07:08:56 -0700
committerJustin Lambert <jlambert@eml.cc>2013-01-11 07:08:56 -0700
commit2dce9ca4c11ffeb43aaafe7551d3fa098fad75c4 (patch)
tree5a8873cde7fa6e92b05e2af04dae732942124c16 /spec/classes/openvpn_init_spec.rb
parent48bbd0cd422d57b4f6278d3b64e53aaf5de787cf (diff)
spec tests catching up with code. got commit happy before
Diffstat (limited to 'spec/classes/openvpn_init_spec.rb')
-rw-r--r--spec/classes/openvpn_init_spec.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/classes/openvpn_init_spec.rb b/spec/classes/openvpn_init_spec.rb
index cdfdea1..45dcc9b 100644
--- a/spec/classes/openvpn_init_spec.rb
+++ b/spec/classes/openvpn_init_spec.rb
@@ -5,16 +5,5 @@ describe 'openvpn', :type => :class do
let (:facts) { { :concat_basedir => '/var/lib/puppet/concat' } }
it { should create_class('openvpn') }
- it { should contain_class('concat::setup') }
- it { should contain_package('openvpn') }
- it { should contain_service('openvpn').with(
- 'ensure' => 'running',
- 'enable' => true
- ) }
-
- it { should contain_file('/etc/openvpn').with('ensure' => 'directory') }
- it { should contain_file('/etc/openvpn/keys').with('ensure' => 'directory') }
-
- it { should contain_concat__fragment('openvpn.default.header') }
end