mirror of
https://github.com/ardichoke/puppet-arpwatch.git
synced 2026-05-11 02:15:37 -04:00
16 lines
342 B
Ruby
16 lines
342 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'arpwatch' do
|
|
on_supported_os.each do |os, os_facts|
|
|
context "on #{os}" do
|
|
let(:facts) { os_facts }
|
|
|
|
it { is_expected.to compile }
|
|
it { is_expected.to contain_package('arpwatch') }
|
|
it { is_expected.to contain_service('arpwatch') }
|
|
end
|
|
end
|
|
end
|