Skip to content

Commit

Permalink
Adds test for splitcaps
Browse files Browse the repository at this point in the history
  • Loading branch information
RobRuana committed Feb 15, 2015
1 parent 68214fa commit 5e1e6ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,8 @@ def test_flags(self):
tests = [
("ASDf test", ["AS", "Df test"],
{"flags": 0}),
("ASDf Test", ["ASDf ", "Test"],
{"flags": re.IGNORECASE}),
("ASDf test", ["AS", "Df", "test"],
{"pattern": "\s", "flags": 0}),
("ASDf Test", ["ASDf", "Test"],
Expand Down

0 comments on commit 5e1e6ab

Please sign in to comment.