diff options
author | Tim Smith <tsmith@chef.io> | 2018-03-17 19:02:26 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-03-17 19:02:26 -0700 |
commit | 33d7ad4d680b3f29a2a24848c074da84f1c25eb6 (patch) | |
tree | c2a50d1cab5ae0c128086b3fa54789217b958b0a /spec/unit/resource/scm_spec.rb | |
parent | e2eaa3fdcd9a5e2f46d90f799eedcd86cc41eb6a (diff) | |
download | chef-scm_subversion.tar.gz |
Move subversion specific properties from scm to subversionscm_subversion
We actually set the defaults for these in the subversion property, but the actual properties are in scm. Move them to subversion since they are subversion specific.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/unit/resource/scm_spec.rb')
-rw-r--r-- | spec/unit/resource/scm_spec.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/unit/resource/scm_spec.rb b/spec/unit/resource/scm_spec.rb index cffc956960..33c2f17498 100644 --- a/spec/unit/resource/scm_spec.rb +++ b/spec/unit/resource/scm_spec.rb @@ -80,17 +80,6 @@ describe Chef::Resource::Scm do expect(resource.svn_password).to eql("taftplz") end - it "has a svn_arguments String attribute" do - 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 - expect(resource.svn_info_args).to be_nil - resource.svn_info_args("--no-moar-plaintext-creds yep") - expect(resource.svn_info_args).to eq("--no-moar-plaintext-creds yep") - end - it "takes the depth as an integer for shallow clones" do resource.depth 5 expect(resource.depth).to eq(5) |