summaryrefslogtreecommitdiff
path: root/spec/classes/openvpn_init_spec.rb
diff options
context:
space:
mode:
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