Skip to content

Commit a445c5d

Browse files
authored
Merge pull request #1152 from tphoney/MODULES-3091
(MODULES-3091) add test for is_string function
2 parents 502fa48 + 729dd94 commit a445c5d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spec/functions/is_string_spec.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
it { is_expected.to run.with_params(-3.7).and_return(false) }
1919
it { is_expected.to run.with_params('-3.7').and_return(false) }
2020

21+
it { is_expected.to run.with_params(:undef).and_return(false) }
2122
it { is_expected.to run.with_params([]).and_return(false) }
2223
it { is_expected.to run.with_params([1]).and_return(false) }
2324
it { is_expected.to run.with_params({}).and_return(false) }

0 commit comments

Comments
 (0)