Update rabbitmq module
[mirror/dsa-puppet.git] / 3rdparty / modules / rabbitmq / spec / unit / puppet / type / rabbitmq_exchange_spec.rb
index 1500122..e1be271 100644 (file)
@@ -1,57 +1,57 @@
-require 'puppet'
-require 'puppet/type/rabbitmq_exchange'
+require 'spec_helper'
 describe Puppet::Type.type(:rabbitmq_exchange) do
-  before :each do
-    @exchange = Puppet::Type.type(:rabbitmq_exchange).new(
-      :name => 'foo@bar',
-      :type => :topic,
-      :internal => false,
-      :auto_delete => false,
-      :durable => true
+  let(:exchange) do
+    Puppet::Type.type(:rabbitmq_exchange).new(
+      name: 'foo@bar',
+      type: :topic,
+      internal: false,
+      auto_delete: false,
+      durable: true
     )
   end
-  it 'should accept an exchange name' do
-    @exchange[:name] = 'dan@pl'
-    @exchange[:name].should == 'dan@pl'
+
+  it 'accepts an exchange name' do
+    exchange[:name] = 'dan@pl'
+    expect(exchange[:name]).to eq('dan@pl')
   end
-  it 'should require a name' do
-    expect {
+  it 'requires a name' do
+    expect do
       Puppet::Type.type(:rabbitmq_exchange).new({})
-    }.to raise_error(Puppet::Error, 'Title or name must be provided')
+    end.to raise_error(Puppet::Error, 'Title or name must be provided')
   end
-  it 'should not allow whitespace in the name' do
-    expect {
-      @exchange[:name] = 'b r'
-    }.to raise_error(Puppet::Error, /Valid values match/)
+  it 'does not allow whitespace in the name' do
+    expect do
+      exchange[:name] = 'b r'
+    end.to raise_error(Puppet::Error, %r{Valid values match})
   end
-  it 'should not allow names without @' do
-    expect {
-      @exchange[:name] = 'b_r'
-    }.to raise_error(Puppet::Error, /Valid values match/)
+  it 'does not allow names without @' do
+    expect do
+      exchange[:name] = 'b_r'
+    end.to raise_error(Puppet::Error, %r{Valid values match})
   end
 
-  it 'should accept an exchange type' do
-    @exchange[:type] = :direct
-    @exchange[:type].should == :direct
+  it 'accepts an exchange type' do
+    exchange[:type] = :direct
+    expect(exchange[:type]).to eq(:direct)
   end
-  it 'should require a type' do
-    expect {
-      Puppet::Type.type(:rabbitmq_exchange).new(:name => 'foo@bar')
-    }.to raise_error(/.*must set type when creating exchange.*/)
+  it 'requires a type' do
+    expect do
+      Puppet::Type.type(:rabbitmq_exchange).new(name: 'foo@bar')
+    end.to raise_error(%r{.*must set type when creating exchange.*})
   end
-  it 'should not require a type when destroying' do
-    expect {
-            Puppet::Type.type(:rabbitmq_exchange).new(:name => 'foo@bar', :ensure => :absent)
-    }.to_not raise_error
+  it 'does not require a type when destroying' do
+    expect do
+      Puppet::Type.type(:rabbitmq_exchange).new(name: 'foo@bar', ensure: :absent)
+    end.not_to raise_error
   end
 
-  it 'should accept a user' do
-    @exchange[:user] = :root
-    @exchange[:user].should == :root
+  it 'accepts a user' do
+    exchange[:user] = :root
+    expect(exchange[:user]).to eq(:root)
   end
 
-  it 'should accept a password' do
-    @exchange[:password] = :PaSsw0rD
-    @exchange[:password].should == :PaSsw0rD
+  it 'accepts a password' do
+    exchange[:password] = :PaSsw0rD
+    expect(exchange[:password]).to eq(:PaSsw0rD)
   end
 end