summaryrefslogtreecommitdiff
path: root/spec/integration/recipes/recipe_dsl_spec.rb
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2015-05-28 11:32:10 -0700
committerJohn Keiser <john@johnkeiser.com>2015-06-01 08:02:05 -0700
commit46e3f2258b1b04ca6030b5ef1575adadaa920e08 (patch)
treef59066b287aee399b923de9346be4a42f4e20924 /spec/integration/recipes/recipe_dsl_spec.rb
parent5998cc7315507e649bb76f139c07715f6e590707 (diff)
downloadchef-46e3f2258b1b04ca6030b5ef1575adadaa920e08.tar.gz
Add use_automatic_resource_name
Diffstat (limited to 'spec/integration/recipes/recipe_dsl_spec.rb')
-rw-r--r--spec/integration/recipes/recipe_dsl_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/recipes/recipe_dsl_spec.rb b/spec/integration/recipes/recipe_dsl_spec.rb
index 3d31b87ffb..c79c20cd7d 100644
--- a/spec/integration/recipes/recipe_dsl_spec.rb
+++ b/spec/integration/recipes/recipe_dsl_spec.rb
@@ -58,7 +58,6 @@ describe "Recipe DSL methods" do
@allowed_actions = [ :create ]
@action = :create
end
- resource_name 'backcompat_thingy'
end
class Chef::Provider::BackcompatThingy < Chef::Provider
def load_current_resource
@@ -84,6 +83,7 @@ describe "Recipe DSL methods" do
before(:context) {
class RecipeDSLSpecNamespace::BackcompatThingy < BaseThingy
+ provides :backcompat_thingy
resource_name :backcompat_thingy
end