Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / 3rdparty / modules / rabbitmq / spec / unit / facter / util / fact_rabbitmq_version_spec.rb
index b4c4420..65edd33 100644 (file)
@@ -1,5 +1,9 @@
 require 'spec_helper'
 
+RSpec.configure do |config|
+  config.mock_with :rspec
+end
+
 describe Facter::Util::Fact do
   before do
     Facter.clear
@@ -15,15 +19,6 @@ describe Facter::Util::Fact do
         expect(Facter.fact(:rabbitmq_version).value).to eq('3.6.0')
       end
     end
-    context 'with invalid value' do
-      before do
-        allow(Facter::Util::Resolution).to receive(:which).with('rabbitmqadmin') { true }
-        allow(Facter::Core::Execution).to receive(:execute).with('rabbitmqadmin --version 2>&1') { 'rabbitmqadmin %%VSN%%' }
-      end
-      it do
-        expect(Facter.fact(:rabbitmq_version).value).to be_nil
-      end
-    end
     context 'rabbitmqadmin is not in path' do
       before do
         allow(Facter::Util::Resolution).to receive(:which).with('rabbitmqadmin') { false }