Mercurial > repos > other > Puppet
comparison modules/stdlib/spec/acceptance/unsupported_spec.rb @ 37:addb0ea390a1 puppet-3.6
Update Puppet "stdlib" module
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 14 Mar 2015 20:09:45 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
36:37675581a273 | 37:addb0ea390a1 |
---|---|
1 #! /usr/bin/env ruby -S rspec | |
2 require 'spec_helper_acceptance' | |
3 | |
4 describe 'unsupported distributions and OSes', :if => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do | |
5 it 'should fail' do | |
6 pp = <<-EOS | |
7 class { 'mysql::server': } | |
8 EOS | |
9 expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/unsupported osfamily/i) | |
10 end | |
11 end |