Properly include profile::accounts in the puppetmaster role

This commit also includes some simple tests which are marked as pending. I
missed this because we don't have tests that compile the catalogs with
profile::puppetmaster. Once we figure out how to make that catalog compilation
work, we'll be good to unpending these suckers
This commit is contained in:
R. Tyler Croy 2014-04-30 17:12:28 -07:00
parent bd8c0e4dbd
commit 98c3d4ff31
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#
# role::puppetmaster defines what a node role that should look like
class role::puppetmaster {
include profile::account
include profile::accounts
include profile::puppetmaster
include profile::r10k
}

View File

@ -0,0 +1,6 @@
require 'spec_helper'
describe 'role::puppetmaster' do
it { pending 'Need to fix <https://gist.github.com/rtyler/05c3bbe1c33de3745ecd>'; should contain_class 'profile::puppetmaster' }
it { pending 'Need to fix <https://gist.github.com/rtyler/05c3bbe1c33de3745ecd>'; should contain_class 'profile::accounts' }
end