Imported Upstream version 1.1.2
[platform/upstream/python-nose.git] / unit_tests / test_issue_227.py
1 # -*- encoding: utf-8 -*-
2 from nose.plugins.skip import SkipTest
3 import sys
4
5
6 def setup():
7     if 'java' in sys.version.lower():
8         raise SkipTest("StringIO() in jython can't handle unicode")
9
10
11 def test_unicode():
12     print u'b\u00f6y'