summaryrefslogtreecommitdiff
path: root/spec/unit/resource/subversion_spec.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-10 22:51:17 -0700
committerTim Smith <tsmith@chef.io>2018-07-10 22:56:11 -0700
commit26a350996cab459b6483e67a66faf6030bb46312 (patch)
treeaaa00ceb834e017391022e7940152f01fed7ef3c /spec/unit/resource/subversion_spec.rb
parent293eb409c165b0080178f378211dde1cbb81c916 (diff)
downloadchef-26a350996cab459b6483e67a66faf6030bb46312.tar.gz
Update wording in resource specs for attributes -> properties
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/unit/resource/subversion_spec.rb')
-rw-r--r--spec/unit/resource/subversion_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/resource/subversion_spec.rb b/spec/unit/resource/subversion_spec.rb
index b29c880b91..a5faa775e1 100644
--- a/spec/unit/resource/subversion_spec.rb
+++ b/spec/unit/resource/subversion_spec.rb
@@ -71,13 +71,13 @@ describe Chef::Resource::Subversion do
expect(resource.svn_arguments).to be_nil
end
- it "has a svn_arguments String attribute" do
+ it "has a svn_arguments String property" do
expect(resource.svn_arguments).to eq("--no-auth-cache") # the default
resource.svn_arguments "--more-taft plz"
expect(resource.svn_arguments).to eql("--more-taft plz")
end
- it "has a svn_info_args String attribute" do
+ it "has a svn_info_args String property" do
expect(resource.svn_info_args).to eq("--no-auth-cache") # the default
resource.svn_info_args("--no-moar-plaintext-creds yep")
expect(resource.svn_info_args).to eq("--no-moar-plaintext-creds yep")