summaryrefslogtreecommitdiff
path: root/unit_tests/test_issue_227.py
blob: 140862eb50146dfc26a7c9cc37fcc4f21841b91f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- encoding: utf-8 -*-
from nose.plugins.skip import SkipTest
import sys


def setup():
    if 'java' in sys.version.lower():
        raise SkipTest("StringIO() in jython can't handle unicode")


def test_unicode():
    print u'b\u00f6y'