(self)
| 739 | self.readerAssertEqual('a"b"c', [['a"b"c']]) |
| 740 | |
| 741 | def test_quotes_and_more(self): |
| 742 | # Excel would never write a field containing '"a"b', but when |
| 743 | # reading one, it will return 'ab'. |
| 744 | self.readerAssertEqual('"a"b', [['ab']]) |
| 745 | |
| 746 | def test_lone_quote(self): |
| 747 | self.readerAssertEqual('a"b', [['a"b']]) |
nothing calls this directly
no test coverage detected