summaryrefslogtreecommitdiff
path: root/spec/classes/ntp_spec.rb
blob: 4ffd817da2ec5facae25bcf9f412c9bfe08efcaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

describe 'ntp' do

  let(:facts) {{ :osfamily => 'Debian' }}

  it { should include_class('ntp::install') }
  it { should include_class('ntp::config') }
  it { should include_class('ntp::service') }

  # These are currently breaking for me.
  #it { should have_class_count(3) }
  #it { should have_resource_count(0) }

end