I'm not even going to worry about 0.25.x support for now

This commit is contained in:
Tim Sharpe 2012-04-07 12:54:08 -07:00
parent 1034302b7c
commit 79afb02139
2 changed files with 6 additions and 14 deletions

View File

@ -5,21 +5,15 @@ rvm:
branches:
only:
- master
- 1.9
notifications:
email:
- tim@github.com
env:
- PUPPET_VERSION=2.6.14
- PUPPET_VERSION=2.7.12
- PUPPET_VERSION=0.25.4
matrix:
exclude:
- rvm: 1.9.2
env: PUPPET_VERSION=2.6.14
- rvm: 1.9.3
env: PUPPET_VERSION=2.6.14
- rvm: 1.9.2
env: PUPPET_VERSION=0.25.4
- rvm: 1.9.3
env: PUPPET_VERSION=0.25.4

View File

@ -1,12 +1,10 @@
require 'spec_helper'
if Puppet::PUPPETVERSION !~ /^0\.2/
describe 'boolean' do
let(:title) { 'bool.testing' }
let(:params) { { :bool => false } }
let(:message_re) { /bool is false/ }
describe 'boolean' do
let(:title) { 'bool.testing' }
let(:params) { { :bool => false } }
let(:message_re) { /bool is false/ }
it { should create_notify("bool testing").with_message(message_re) }
it { should_not create_notify("bool testing").with_message(/true/) }
end
it { should create_notify("bool testing").with_message(message_re) }
it { should_not create_notify("bool testing").with_message(/true/) }
end