diff options
author | Hailee Kenney <hailee@puppetlabs.com> | 2016-10-06 15:23:35 -0700 |
---|---|---|
committer | Hailee Kenney <hailee@puppetlabs.com> | 2016-10-06 15:31:47 -0700 |
commit | bcab71ded8507de4fd9f89b4dcf798b3d98ace59 (patch) | |
tree | a2c2689d612e142f821492fda11ef4e9a55e204a /spec/unit/puppet/provider | |
parent | c046716de30c55662cff0d11efa573f0d572d984 (diff) |
(MODULES-3590) Fix match_for_absence parameter
Prior to this commit, due to a bug in the exists? method in the
file_line provider, match_for_absence didn't work as described (or
at all really). Update the exists? logic so that match_for_absence
works as described.
Additionally add a unit test to prevent regressions and update the
documentation for the parameter to reflect the fact that it is
ignored when `ensure => present`.
Diffstat (limited to 'spec/unit/puppet/provider')
-rwxr-xr-x | spec/unit/puppet/provider/file_line/ruby_spec.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/unit/puppet/provider/file_line/ruby_spec.rb b/spec/unit/puppet/provider/file_line/ruby_spec.rb index fdeaf1a..1f41f62 100755 --- a/spec/unit/puppet/provider/file_line/ruby_spec.rb +++ b/spec/unit/puppet/provider/file_line/ruby_spec.rb @@ -363,6 +363,13 @@ describe provider_class do @provider = provider_class.new(@resource) end + it 'should find a line to match' do + File.open(@tmpfile, 'w') do |fh| + fh.write("foo1\nfoo\nfoo2") + end + expect(@provider.exists?).to be_truthy + end + it 'should remove one line if it matches' do File.open(@tmpfile, 'w') do |fh| fh.write("foo1\nfoo\nfoo2") |