Revert "Update 3rdparty rabbitmq module"
[mirror/dsa-puppet.git] / 3rdparty / modules / rabbitmq / spec / unit / facter / util / fact_rabbitmq_version_spec.rb
diff --git a/3rdparty/modules/rabbitmq/spec/unit/facter/util/fact_rabbitmq_version_spec.rb b/3rdparty/modules/rabbitmq/spec/unit/facter/util/fact_rabbitmq_version_spec.rb
deleted file mode 100644 (file)
index b4c4420..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-require 'spec_helper'
-
-describe Facter::Util::Fact do
-  before do
-    Facter.clear
-  end
-
-  describe 'rabbitmq_version' do
-    context 'with 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 3.6.0' }
-      end
-      it 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 }
-      end
-      it do
-        expect(Facter.fact(:rabbitmq_version).value).to be_nil
-      end
-    end
-  end
-end