26 lines
655 B
Python
26 lines
655 B
Python
import os
|
|
import re
|
|
import sys
|
|
import unittest
|
|
import tabnanny
|
|
import compileall
|
|
|
|
class TestOverall(unittest.TestCase):
|
|
|
|
"""
|
|
Test overall package health by compiling and checking
|
|
code style.
|
|
"""
|
|
|
|
def testModules(self):
|
|
"""Testing all modules by compiling them"""
|
|
src = '.%sslixmpp' % os.sep
|
|
rx = re.compile('/[.]svn|.*26.*')
|
|
self.assertTrue(compileall.compile_dir(src, rx=rx, quiet=True))
|
|
|
|
def testTabNanny(self):
|
|
"""Testing that indentation is consistent"""
|
|
self.assertFalse(tabnanny.check('..%sslixmpp' % os.sep))
|
|
|
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestOverall)
|