summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2015-09-22 22:15:19 -0700
committerJohn Keiser <john@johnkeiser.com>2015-09-22 22:50:28 -0700
commitd8f7ca4d08f00db96fbf1e98a7f1ed763c7bab01 (patch)
tree73cec404209729267202b0e28ba888d84fc1046a /spec/unit
parent0d93133c31704711b2bb6a20db74a83dc1b23493 (diff)
downloadchef-d8f7ca4d08f00db96fbf1e98a7f1ed763c7bab01.tar.gz
Honor the ordering of whichever `name_attribute` or `default` comes first
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/property_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/property_spec.rb b/spec/unit/property_spec.rb
index f758b5f403..533f0f4e4d 100644
--- a/spec/unit/property_spec.rb
+++ b/spec/unit/property_spec.rb
@@ -952,8 +952,8 @@ describe "Chef::Resource.property" do
end
end
with_property ":x, #{name}: true, default: 10" do
- it "chooses default over #{name}" do
- expect(resource.x).to eq 10
+ it "chooses #{name} over default" do
+ expect(resource.x).to eq 'blah'
end
end
with_property ":x, #{name}: true, required: true" do