summaryrefslogtreecommitdiff
path: root/spec/acceptance/unsupported_spec.rb
blob: 449f35a63b81580cb204a7f216cd3e885a5da9d9 (plain)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper_acceptance'

describe 'unsupported distributions and OSes', :if => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
  it 'should fail' do
    pp = <<-EOS
    class { 'mysql::server': }
    EOS
    expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/unsupported osfamily/i)
  end
end