blob: cdb31358b9676228bdd4605fd4e83af76b881adb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'spec_helper'
describe 'openvpn::install', :type => :class do
it { should create_class('openvpn::install') }
it { should contain_package('openvpn') }
it { should contain_file('/etc/openvpn').with('ensure' => 'directory') }
it { should contain_file('/etc/openvpn/keys').with('ensure' => 'directory') }
end
|