cpython/Lib/test/test_future4.py
Victor Stinner 502fe19b10
bpo-35412: Add testcase to test_future4 (GH-11131)
Add testcase to test_future4: check unicode literal.
2018-12-12 18:38:34 +01:00

12 lines
222 B
Python

from __future__ import unicode_literals
import unittest
class Tests(unittest.TestCase):
def test_unicode_literals(self):
self.assertIsInstance("literal", str)
if __name__ == "__main__":
unittest.main()