summaryrefslogtreecommitdiff
path: root/spec/unit/property/validation_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/property/validation_spec.rb')
-rw-r--r--spec/unit/property/validation_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/property/validation_spec.rb b/spec/unit/property/validation_spec.rb
index e32147bd38..7ce6a45167 100644
--- a/spec/unit/property/validation_spec.rb
+++ b/spec/unit/property/validation_spec.rb
@@ -549,8 +549,8 @@ describe "Chef::Resource.property validation" do
end
with_property ':x, name_property: true, required: true' do
- it "if x is not specified, retrieval fails" do
- expect { resource.x }.to raise_error Chef::Exceptions::ValidationFailed
+ it "if x is not specified, retrieval succeeds" do
+ expect(resource.x).to eq 'blah'
end
it "value 1 is valid" do
expect(resource.x 1).to eq 1
@@ -564,8 +564,8 @@ describe "Chef::Resource.property validation" do
end
with_property ':x, default: 10, required: true' do
- it "if x is not specified, retrieval fails" do
- expect { resource.x }.to raise_error Chef::Exceptions::ValidationFailed
+ it "if x is not specified, the default is returned" do
+ expect(resource.x).to eq 10
end
it "value 1 is valid" do
expect(resource.x 1).to eq 1