Update rabbitmq module
[mirror/dsa-puppet.git] / 3rdparty / modules / rabbitmq / spec / unit / puppet / type / rabbitmq_vhost_spec.rb
index 70b8e37..38337b1 100644 (file)
@@ -1,21 +1,21 @@
-require 'puppet'
-require 'puppet/type/rabbitmq_vhost'
+require 'spec_helper'
 describe Puppet::Type.type(:rabbitmq_vhost) do
-  before :each do
-    @vhost = Puppet::Type.type(:rabbitmq_vhost).new(:name => 'foo')
+  let(:vhost) do
+    Puppet::Type.type(:rabbitmq_vhost).new(name: 'foo')
   end
-  it 'should accept a vhost name' do
-    @vhost[:name] = 'dan'
-    @vhost[:name].should == 'dan'
+
+  it 'accepts a vhost name' do
+    vhost[:name] = 'dan'
+    expect(vhost[:name]).to eq('dan')
   end
-  it 'should require a name' do
-    expect {
+  it 'requires a name' do
+    expect do
       Puppet::Type.type(:rabbitmq_vhost).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 {
-      @vhost[:name] = 'b r'
-    }.to raise_error(Puppet::Error, /Valid values match/)
+  it 'does not allow whitespace in the name' do
+    expect do
+      vhost[:name] = 'b r'
+    end.to raise_error(Puppet::Error, %r{Valid values match})
   end
 end