Skip to content

Commit

Permalink
Add test for #26
Browse files Browse the repository at this point in the history
  • Loading branch information
tsproisl committed Sep 21, 2023
1 parent 3fe5049 commit fd10e41
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,10 @@ def test_emails_urls_24(self):
def test_emails_urls_25(self):
self._equal("name [at] provider [dot] com", ["name[at]provider[dot]com"])

@unittest.expectedFailure
def test_emails_urls_26(self):
self._equal("link: [https://one_link.com](https://other_link.com).", "link : [ https://one_link.com ] ( https://other_link.com ) .")


class TestAbbreviations(TestTokenizer):
def test_abbreviations_01(self):
Expand Down

0 comments on commit fd10e41

Please sign in to comment.