mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-06 01:53:37 +00:00
cec4ed573d
Switched out sqlite3 libs in favour of SQLAlchemy v0.9, will gradually migrate dialects and scheme to be fully SQLAlchemy compliant for using there ORM with sessions instead of direct. Fixed getEpisode function to stop making unrequired scene number conversions on already converted data thats available now from cache.
19 lines
434 B
Python
19 lines
434 B
Python
import unittest
|
|
|
|
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 compat.py3k:
|
|
raise nose.SkipTest("Only useful on Python 2")
|
|
self.assertRaises(Exception, compat.ntob, unicode('fight'))
|