summaryrefslogtreecommitdiff
path: root/spec/functions/delete_spec.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppet.com>2016-04-25 14:34:21 -0700
committerHunter Haugen <hunter@puppet.com>2016-04-25 14:36:53 -0700
commit19752a7ff378a35f287bf5351d466a1eae399266 (patch)
tree70444106b30f5aa041014b181f7f37f2df1395c4 /spec/functions/delete_spec.rb
parent232de137f1018060b256b1f3f649be0b6d7d9952 (diff)
Remove todo for delete() and update spec
This spec should verify that substring matches are not removed in the future
Diffstat (limited to 'spec/functions/delete_spec.rb')
-rwxr-xr-xspec/functions/delete_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/functions/delete_spec.rb b/spec/functions/delete_spec.rb
index 6c4747b..cf696ac 100755
--- a/spec/functions/delete_spec.rb
+++ b/spec/functions/delete_spec.rb
@@ -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']) }