summaryrefslogtreecommitdiff
path: root/spec/functions/delete_spec.rb
diff options
context:
space:
mode:
authorJoseph Yaworski <joseph.yaworski@fireeye.com>2016-05-11 13:21:24 -0400
committerJoseph Yaworski <joseph.yaworski@fireeye.com>2016-05-13 13:25:35 -0400
commitdd71c0288052dd3a96e730ff198f5c0a8d640946 (patch)
treefd55b7e18c892092ac37276e998356e91388bdce /spec/functions/delete_spec.rb
parentecfdbb2690359434f1737d05ce723cf2f5d05c4e (diff)
Add a delete_regex function
To maintain backwards compatibility, add a delete_regex function instead of modifying delete itself.
Diffstat (limited to 'spec/functions/delete_spec.rb')
-rwxr-xr-xspec/functions/delete_spec.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/spec/functions/delete_spec.rb b/spec/functions/delete_spec.rb
index fd2a8ad..b44accf 100755
--- a/spec/functions/delete_spec.rb
+++ b/spec/functions/delete_spec.rb
@@ -13,15 +13,12 @@ describe 'delete' do
it { is_expected.to run.with_params([], 'two').and_return([]) }
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'], '^t.*').and_return(['one']) }
it { is_expected.to run.with_params(['ab', 'b', 'c', 'b'], 'b').and_return(['ab', 'c']) }
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']) }
- it { is_expected.to run.with_params(['abracadabra'], 'abr').and_return(['abracadabra']) }
- it { is_expected.to run.with_params(['abracadabra'], '^.*jimbob.*$').and_return(['abracadabra']) }
end
describe 'deleting from a string' do