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: branches:
only: only:
- master - master
- 1.9
notifications: notifications:
email: email:
- tim@github.com - tim@github.com
env: env:
- PUPPET_VERSION=2.6.14 - PUPPET_VERSION=2.6.14
- PUPPET_VERSION=2.7.12 - PUPPET_VERSION=2.7.12
- PUPPET_VERSION=0.25.4
matrix: matrix:
exclude: exclude:
- rvm: 1.9.2 - rvm: 1.9.2
env: PUPPET_VERSION=2.6.14 env: PUPPET_VERSION=2.6.14
- rvm: 1.9.3 - rvm: 1.9.3
env: PUPPET_VERSION=2.6.14 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' require 'spec_helper'
if Puppet::PUPPETVERSION !~ /^0\.2/ describe 'boolean' do
describe 'boolean' do let(:title) { 'bool.testing' }
let(:title) { 'bool.testing' } let(:params) { { :bool => false } }
let(:params) { { :bool => false } } let(:message_re) { /bool is false/ }
let(:message_re) { /bool is false/ }
it { should create_notify("bool testing").with_message(message_re) } it { should create_notify("bool testing").with_message(message_re) }
it { should_not create_notify("bool testing").with_message(/true/) } it { should_not create_notify("bool testing").with_message(/true/) }
end
end end