Home | History | Annotate | Download | only in test
      1 from __future__ import unicode_literals
      2 import unittest
      3 
      4 
      5 class Tests(unittest.TestCase):
      6     def test_unicode_literals(self):
      7         self.assertIsInstance("literal", str)
      8 
      9 
     10 if __name__ == "__main__":
     11     unittest.main()
     12