diff options
author | R.I.Pienaar <rip@devco.net> | 2012-05-31 16:36:59 -0700 |
---|---|---|
committer | R.I.Pienaar <rip@devco.net> | 2012-05-31 16:36:59 -0700 |
commit | 99f3eb83f77ae68664eb2b346df4e4db6f21f1b3 (patch) | |
tree | 2317123cbc519b621f7a8c2178e84b3abaca0751 /spec | |
parent | 52d5f36c757ce34b3d0f4f322bca34992b43c8af (diff) | |
parent | 1fbe790b9aa086dab38846e7c454080dbe54da00 (diff) | |
download | puppet-concat-99f3eb83f77ae68664eb2b346df4e4db6f21f1b3.tar.gz puppet-concat-99f3eb83f77ae68664eb2b346df4e4db6f21f1b3.tar.bz2 |
Merge pull request #23 from sathlan/feature/add-basic-tests
Feature/add basic tests
Diffstat (limited to 'spec')
-rw-r--r-- | spec/defines/init_spec.rb | 20 | ||||
-rw-r--r-- | spec/spec_helper.rb | 9 |
2 files changed, 29 insertions, 0 deletions
diff --git a/spec/defines/init_spec.rb b/spec/defines/init_spec.rb new file mode 100644 index 0000000..d968a26 --- /dev/null +++ b/spec/defines/init_spec.rb @@ -0,0 +1,20 @@ +require 'spec_helper' + +describe 'concat' do + basedir = '/var/lib/puppet/concat' + let(:title) { '/etc/foo.bar' } + let(:facts) { { :concat_basedir => '/var/lib/puppet/concat' } } + let :pre_condition do + 'include concat::setup' + end + it { should contain_file("#{basedir}/_etc_foo.bar").with('ensure' => 'directory') } + it { should contain_file("#{basedir}/_etc_foo.bar/fragments").with('ensure' => 'directory') } + + it { should contain_file("#{basedir}/_etc_foo.bar/fragments.concat").with('ensure' => 'present') } + it { should contain_file("/etc/foo.bar").with('ensure' => 'present') } + it { should contain_exec("concat_/etc/foo.bar").with_command( + "#{basedir}/bin/concatfragments.sh "+ + "-o #{basedir}/_etc_foo.bar/fragments.concat.out "+ + "-d #{basedir}/_etc_foo.bar ") + } +end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..e6e9309 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,9 @@ +require 'puppet' +require 'rspec' +require 'rspec-puppet' + +RSpec.configure do |c| + c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules/')) + # Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15 + c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests')) +end |