Changeset 114:3342a5062422 for imapclient/test/test_response_parser.py
- Timestamp:
- 12/28/09 19:01:43 (2 years ago)
- Branch:
- default
- Files:
-
- 1 modified
-
imapclient/test/test_response_parser.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imapclient/test/test_response_parser.py
r113 r114 95 95 96 96 97 def test_quoted_specials(self): 98 self._test(r'"foo \"bar\""', ('foo "bar"',)) 99 self._test(r'"foo\\bar"', (r'foo\bar',)) 100 101 97 102 def test_incomplete_tuple(self): 98 103 self._test_parse_error('abc (1 2', 'Tuple incomplete before "(1 2"') … … 105 110 def test_bad_quoting(self): 106 111 self._test_parse_error('"abc next', 'No closing quotation: "abc next') 112 113 107 114 108 115
