|
1 | 1 | #! /usr/bin/env ruby -S rspec |
2 | 2 | require 'spec_helper_acceptance' |
3 | 3 |
|
4 | | -describe 'is_a function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do |
5 | | - it 'should match a string' do |
6 | | - pp = <<-EOS |
7 | | - if 'hello world'.is_a(String) { |
8 | | - notify { 'output correct': } |
9 | | - } |
10 | | - EOS |
| 4 | +if get_puppet_version =~ /^4/ |
| 5 | + describe 'is_a function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do |
| 6 | + it 'should match a string' do |
| 7 | + pp = <<-EOS |
| 8 | + if 'hello world'.is_a(String) { |
| 9 | + notify { 'output correct': } |
| 10 | + } |
| 11 | + EOS |
11 | 12 |
|
12 | | - apply_manifest(pp, :catch_failures => true) do |r| |
13 | | - expect(r.stdout).to match(/Notice: output correct/) |
| 13 | + apply_manifest(pp, :catch_failures => true) do |r| |
| 14 | + expect(r.stdout).to match(/Notice: output correct/) |
| 15 | + end |
14 | 16 | end |
15 | | - end |
16 | 17 |
|
17 | | - it 'should not match a integer as string' do |
18 | | - pp = <<-EOS |
19 | | - if 5.is_a(String) { |
20 | | - notify { 'output wrong': } |
21 | | - } |
22 | | - EOS |
| 18 | + it 'should not match a integer as string' do |
| 19 | + pp = <<-EOS |
| 20 | + if 5.is_a(String) { |
| 21 | + notify { 'output wrong': } |
| 22 | + } |
| 23 | + EOS |
23 | 24 |
|
24 | | - apply_manifest(pp, :catch_failures => true) do |r| |
25 | | - expect(r.stdout).not_to match(/Notice: output wrong/) |
| 25 | + apply_manifest(pp, :catch_failures => true) do |r| |
| 26 | + expect(r.stdout).not_to match(/Notice: output wrong/) |
| 27 | + end |
26 | 28 | end |
27 | 29 | end |
28 | 30 | end |
0 commit comments