1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00
SickRage/tests/encoding_tests.py

32 lines
910 B
Python

# coding=utf-8
import unittest
import sys, os.path
sys.path.append(os.path.abspath('..'))
sys.path.append(os.path.abspath('../lib'))
import sickbeard
from sickbeard import encodingKludge as ek
from sickbeard.exceptions import ex
sickbeard.SYS_ENCODING = 'UTF-8'
DEBUG = VERBOSE = False
class EncodingTests(unittest.TestCase):
def test_encoding(self):
strings = [u'הערוץ הראשון', 'Les Enfants De La Télé', u'\x89']
for s in strings:
try:
print ek.ss(s)
print unicode(s).decode('UTF-8')
except Exception, e:
print ex(e)
if __name__ == "__main__":
print "=================="
print "STARTING - Encoding TESTS"
print "=================="
print "######################################################################"
suite = unittest.TestLoader().loadTestsFromTestCase(EncodingTests)