Skip to content

Commit

Permalink
additional test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
igneus committed Dec 16, 2015
1 parent f62826b commit 94eaaf7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/string_helpers_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ class StringHelpersTest < GlyTest
['single_chunk', 'a', ['a']],
['simple_whitespace', 'aa aa', ['aa', 'aa']],
['leading_trailing_whitespace', ' a a ', ['a', 'a']],
['repeated_inner_whitespace', 'a a', ['a', 'a']],
['bracketted', '(a)', ['a']],
['empty', '()', ['']]
['empty', '()', ['']],
['nested', '(a(b))', ['a(b', ')']] # nesting isn't supported
]

examples.each do |e|
Expand Down

0 comments on commit 94eaaf7

Please sign in to comment.