File: __init__.py

package info (click to toggle)
python-babelgladeextractor 0.7.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: python: 248; xml: 101; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 940 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
# vim: sw=4 ts=4 fenc=utf-8
# =============================================================================
# $Id$
# =============================================================================
#             $URL$
# $LastChangedDate$
#             $Rev$
#   $LastChangedBy$
# =============================================================================
# Copyright (C) 2007 Ufsoft.org - Pedro Algarvio <ufs@ufsoft.org>
#
# Please view LICENSE for additional licensing information.
# =============================================================================


import unittest

def suite():
    from babelglade.tests import test_extract, test_translate
    suite = unittest.TestSuite()
    suite.addTest(unittest.makeSuite(test_extract.GladeExtractTests))
    suite.addTest(unittest.makeSuite(test_translate.TranslateTestCase))
    return suite

if __name__ == '__main__':
    unittest.main(defaultTest='suite')