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.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/classes/openvpn_init_spec.rb b/spec/classes/openvpn_init_spec.rb
new file mode 100644
index 0000000..cdfdea1
--- /dev/null
+++ b/spec/classes/openvpn_init_spec.rb
@@ -0,0 +1,20 @@
+require 'spec_helper'
+
+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