blob: 1901c1c0668147b1906a11bfe85a6ca3ce4f44fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'spec_helper'
describe 'opendkim', :type => :class do
describe "Opendkim class with no parameters, basic test" do
let(:params) { { } }
it {
should contain_package('opendkim')
should contain_service('opendkim')
}
end
end
|