diff options
author | TP Honey <tphoney@users.noreply.github.com> | 2017-02-22 12:02:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-22 12:02:48 +0000 |
commit | b28b6c86345befe0111df79cfcd3e62e83867b81 (patch) | |
tree | 886f80f629c41796cd23e3b614bd00fd46fde5ac /spec/acceptance/unsupported_spec.rb | |
parent | 6f160c37ba0883c27baae534ae8dfd45e231cc01 (diff) | |
parent | 3fc7694d9fd46b4647eb562170af48ed819f64ab (diff) |
Merge pull request #723 from tphoney/remove_unsupported_platforms_and_future_parser
remove unsupported platforms and future parser
Diffstat (limited to 'spec/acceptance/unsupported_spec.rb')
-rwxr-xr-x | spec/acceptance/unsupported_spec.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/acceptance/unsupported_spec.rb b/spec/acceptance/unsupported_spec.rb deleted file mode 100755 index 1c559f6..0000000 --- a/spec/acceptance/unsupported_spec.rb +++ /dev/null @@ -1,11 +0,0 @@ -#! /usr/bin/env ruby -S rspec -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 |