summaryrefslogtreecommitdiff
path: root/spec/unit/resource/mount_spec.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-05-16 12:48:05 -0700
committerTim Smith <tsmith@chef.io>2018-05-16 15:45:33 -0700
commit69687a927da48b169262e3b961fd2c12e6723574 (patch)
treea0744c8401a4ae32ed489c65a3cfd57d3b784b67 /spec/unit/resource/mount_spec.rb
parentb69877bb0f1b2aec99f9c0a392d064e2b0d21bda (diff)
downloadchef-69687a927da48b169262e3b961fd2c12e6723574.tar.gz
Add additional resource specs
Auto generated from the resource inspector Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/unit/resource/mount_spec.rb')
-rw-r--r--spec/unit/resource/mount_spec.rb33
1 files changed, 15 insertions, 18 deletions
diff --git a/spec/unit/resource/mount_spec.rb b/spec/unit/resource/mount_spec.rb
index 2fdad43f3f..fd81901f45 100644
--- a/spec/unit/resource/mount_spec.rb
+++ b/spec/unit/resource/mount_spec.rb
@@ -20,29 +20,26 @@
require "spec_helper"
describe Chef::Resource::Mount do
- let(:resource) { Chef::Resource::Mount.new("filesystem") }
+ let(:resource) { Chef::Resource::Mount.new("fakey_fakerton") }
- it "has a name property" do
- expect(resource.name).to eql("filesystem")
+ it "the mount_point property is the name_property" do
+ expect(resource.mount_point).to eql("fakey_fakerton")
end
- it "sets mount_point to the name" do
- expect(resource.mount_point).to eql("filesystem")
- end
-
- it "has a default action of mount" do
+ it "sets the default action as :mount" do
expect(resource.action).to eql([:mount])
end
- it "accepts mount, umount, unmount and remount as actions" do
+ it "supports :disable, :enable, :mount, :remount, :umount, :unmount actions" do
+ expect { resource.action :disable }.not_to raise_error
+ expect { resource.action :enable }.not_to raise_error
expect { resource.action :mount }.not_to raise_error
+ expect { resource.action :remount }.not_to raise_error
expect { resource.action :umount }.not_to raise_error
expect { resource.action :unmount }.not_to raise_error
- expect { resource.action :remount }.not_to raise_error
- expect { resource.action :brooklyn }.to raise_error(ArgumentError)
end
- it "allows you to set the device attribute" do
+ it "allows you to set the device property" do
resource.device "/dev/sdb3"
expect(resource.device).to eql("/dev/sdb3")
end
@@ -51,12 +48,12 @@ describe Chef::Resource::Mount do
expect(resource.fsck_device).to eql("-")
end
- it "allows you to set the fsck_device attribute" do
+ it "allows you to set the fsck_device property" do
resource.fsck_device "/dev/rdsk/sdb3"
expect(resource.fsck_device).to eql("/dev/rdsk/sdb3")
end
- it "allows you to set the fstype attribute" do
+ it "allows you to set the fstype property" do
resource.fstype "nfs"
expect(resource.fstype).to eql("nfs")
end
@@ -65,17 +62,17 @@ describe Chef::Resource::Mount do
expect(resource.fstype).to eql("auto")
end
- it "allows you to set the dump attribute" do
+ it "allows you to set the dump property" do
resource.dump 1
expect(resource.dump).to eql(1)
end
- it "allows you to set the pass attribute" do
+ it "allows you to set the pass property" do
resource.pass 1
expect(resource.pass).to eql(1)
end
- it "sets the options attribute to defaults" do
+ it "sets the options property to defaults" do
expect(resource.options).to eql(["defaults"])
end
@@ -84,7 +81,7 @@ describe Chef::Resource::Mount do
expect(resource.options).to be_a_kind_of(Array)
end
- it "allows options attribute as an array" do
+ it "allows options property as an array" do
resource.options %w{ro nosuid}
expect(resource.options).to be_a_kind_of(Array)
end