summaryrefslogtreecommitdiffstats
path: root/spec/unit/util/queue
diff options
context:
space:
mode:
authorPieter van de Bruggen <pieter@puppetlabs.com>2011-05-17 14:50:40 -0700
committerPieter van de Bruggen <pieter@puppetlabs.com>2011-05-17 14:50:40 -0700
commitf9e44f041b3fdc120b1c78554c35c83f7517152e (patch)
treef5d4687277fff6fe697a92089f1fa9283dce1bb4 /spec/unit/util/queue
parent99d437d2bbc2339f092304715ec562fbbcb0a50c (diff)
parentc8b294a0b0a1fc91a64c0a1ac3bab3b2aec92faf (diff)
Merge branch '2.7.x' into 2.7.next
Diffstat (limited to 'spec/unit/util/queue')
-rwxr-xr-xspec/unit/util/queue/stomp_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/util/queue/stomp_spec.rb b/spec/unit/util/queue/stomp_spec.rb
index 99c77d0b4..6799becea 100755
--- a/spec/unit/util/queue/stomp_spec.rb
+++ b/spec/unit/util/queue/stomp_spec.rb
@@ -2,14 +2,14 @@
require 'spec_helper'
require 'puppet/util/queue'
-describe Puppet::Util::Queue, :if => Puppet.features.stomp? do
+describe Puppet::Util::Queue, :if => Puppet.features.stomp?, :'fails_on_ruby_1.9.2' => true do
it 'should load :stomp client appropriately' do
Puppet.settings.stubs(:value).returns 'faux_queue_source'
Puppet::Util::Queue.queue_type_to_class(:stomp).name.should == 'Puppet::Util::Queue::Stomp'
end
end
-describe 'Puppet::Util::Queue::Stomp', :if => Puppet.features.stomp? do
+describe 'Puppet::Util::Queue::Stomp', :if => Puppet.features.stomp?, :'fails_on_ruby_1.9.2' => true do
before do
# So we make sure we never create a real client instance.
# Otherwise we'll try to connect, and that's bad.