summaryrefslogtreecommitdiff
path: root/tests/test_split.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_split.py')
-rw-r--r--tests/test_split.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_split.py b/tests/test_split.py
index f6d5f50..7c2645d 100644
--- a/tests/test_split.py
+++ b/tests/test_split.py
@@ -133,6 +133,11 @@ class SQLSplitTest(TestCaseBase):
stmts = list(sqlparse.parsestream(stream))
self.assertEqual(type(stmts[0].tokens[0].value), text_type)
+ def test_unicode_parsestream(self):
+ stream = StringIO(u"SELECT ö")
+ stmts = list(sqlparse.parsestream(stream))
+ self.assertEqual(str(stmts[0]), "SELECT ö")
+
def test_split_simple():
stmts = sqlparse.split('select * from foo; select * from bar;')