Remove todo for delete() and update spec

This spec should verify that substring matches are not removed in the
future
This commit is contained in:
Hunter Haugen 2016-04-25 14:34:21 -07:00
parent 232de137f1
commit 19752a7ff3
2 changed files with 1 additions and 1 deletions

View file

@ -14,7 +14,6 @@ This release provides several new functions, bugfixes, modulesync changes, and s
- Extends `suffix` to support applying a suffix to keys in a hash.
- Apply modulesync changes.
- Add validate_email_address function.
- Add support for regular expressions to delete.
####Bugfixes
- Fixes `fqdn_rand_string` tests, since Puppet 4.4.0 and later have a higher `fqdn_rand` ceiling.

View file

@ -13,6 +13,7 @@ describe 'delete' do
it { is_expected.to run.with_params(['two'], 'two').and_return([]) }
it { is_expected.to run.with_params(['two', 'two'], 'two').and_return([]) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'four').and_return(['one', 'two', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'e').and_return(['one', 'two', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three'], 'two').and_return(['one', 'three']) }
it { is_expected.to run.with_params(['two', 'one', 'two', 'three', 'two'], 'two').and_return(['one', 'three']) }
it { is_expected.to run.with_params(['one', 'two', 'three', 'two'], ['one', 'two']).and_return(['three']) }