mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-08-18 19:26:57 +00:00
24 lines
474 B
Python
24 lines
474 B
Python
from __future__ import unicode_literals
|
|
|
|
import unittest
|
|
|
|
import six
|
|
|
|
import nose
|
|
|
|
from cherrypy import _cpcompat as compat
|
|
|
|
|
|
class StringTester(unittest.TestCase):
|
|
|
|
def test_ntob_non_native(self):
|
|
"""
|
|
ntob should raise an Exception on unicode.
|
|
(Python 2 only)
|
|
|
|
See #1132 for discussion.
|
|
"""
|
|
if six.PY3:
|
|
raise nose.SkipTest("Only useful on Python 2")
|
|
self.assertRaises(Exception, compat.ntob, 'fight')
|