mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
12 lines
222 B
Python
Vendored
12 lines
222 B
Python
Vendored
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()
|