slixmpp/tests/test_overall.py

27 lines
655 B
Python
Raw Normal View History

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"""
2014-07-17 12:19:04 +00:00
src = '.%sslixmpp' % os.sep
rx = re.compile('/[.]svn|.*26.*')
2018-10-08 21:25:23 +00:00
self.assertTrue(compileall.compile_dir(src, rx=rx, quiet=True))
def testTabNanny(self):
"""Testing that indentation is consistent"""
2018-10-08 21:25:23 +00:00
self.assertFalse(tabnanny.check('..%sslixmpp' % os.sep))
suite = unittest.TestLoader().loadTestsFromTestCase(TestOverall)