Update 3rdparty rabbitmq module
[mirror/dsa-puppet.git] / 3rdparty / modules / rabbitmq / spec / unit / puppet / provider / rabbitmq_plugin / rabbitmqctl_spec.rb
index c398b62..3c0a757 100644 (file)
@@ -1,26 +1,24 @@
-require 'puppet'
-require 'mocha'
-RSpec.configure do |config|
-  config.mock_with :mocha
-end
+require 'spec_helper'
+
 provider_class = Puppet::Type.type(:rabbitmq_plugin).provider(:rabbitmqplugins)
 describe provider_class do
-  before :each do
-    @resource = Puppet::Type::Rabbitmq_plugin.new(
-      {:name => 'foo'}
+  let(:resource) do
+    Puppet::Type::Rabbitmq_plugin.new(
+      name: 'foo'
     )
-    @provider = provider_class.new(@resource)
   end
-  it 'should match plugins' do
-    @provider.expects(:rabbitmqplugins).with('list', '-E', '-m').returns("foo\n")
-    @provider.exists?.should == 'foo'
+  let(:provider) { provider_class.new(resource) }
+
+  it 'matches plugins' do
+    provider.expects(:rabbitmqplugins).with('list', '-E', '-m').returns("foo\n")
+    expect(provider.exists?).to eq(true)
   end
-  it 'should call rabbitmqplugins to enable' do
-    @provider.expects(:rabbitmqplugins).with('enable', 'foo')
-    @provider.create
+  it 'calls rabbitmqplugins to enable' do
+    provider.expects(:rabbitmqplugins).with('enable', 'foo')
+    provider.create
   end
-  it 'should call rabbitmqplugins to disable' do
-    @provider.expects(:rabbitmqplugins).with('disable', 'foo')
-    @provider.destroy
+  it 'calls rabbitmqplugins to disable' do
+    provider.expects(:rabbitmqplugins).with('disable', 'foo')
+    provider.destroy
   end
 end