summaryrefslogtreecommitdiff
path: root/spec/hosts/wrong_os_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/hosts/wrong_os_spec.rb')
-rw-r--r--spec/hosts/wrong_os_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/hosts/wrong_os_spec.rb b/spec/hosts/wrong_os_spec.rb
new file mode 100644
index 0000000..5704ded
--- /dev/null
+++ b/spec/hosts/wrong_os_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe 'wrong_os' do
+ let (:facts) { {
+ :osfamily => 'MS-DOS'
+ } }
+
+ it 'should fail' do
+ expect { should contain_package('ruby-augeas') }.to raise_error(Puppet::Error, /Unsupported OS family/)
+ end
+end