(self)
| 1779 | self.assertEqual(actual, expected) |
| 1780 | |
| 1781 | def test_write_unicode(self): |
| 1782 | f = BytesIO() |
| 1783 | |
| 1784 | data = u"foo" |
| 1785 | write_data(f, data) |
| 1786 | |
| 1787 | expected = b"foo" |
| 1788 | actual = f.getvalue() |
| 1789 | |
| 1790 | self.assertEqual(actual, expected) |
| 1791 | |
| 1792 | |
| 1793 | class TestQueryYesOrNo(BaseStdout): |
nothing calls this directly
no test coverage detected