mirror of https://github.com/chriskiehl/Gooey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
362 B
25 lines
362 B
'''
|
|
Created on Jan 25, 2014
|
|
|
|
@author: Chris
|
|
'''
|
|
|
|
from i18n import I18N
|
|
import unittest
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def testI18nThrowsIOErrorOnBadPath(self):
|
|
with self.assertRaises(IOError):
|
|
I18N('franch')
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
#import sys;sys.argv = ['', 'Test.testName']
|
|
unittest.main()
|