mirror of
https://github.com/triqs/dft_tools
synced 2024-11-08 23:23:49 +01:00
9d4fb22572
A single-file test suite for 'inpconf.py' is split into several files, each containing a separate TestCase class. In addition, all test cases are derived from class ArrayTestCase (in turn derived from TestCase) which contains a numpy-array equality method.
10 lines
204 B
Python
10 lines
204 B
Python
r"""
|
|
Test suite for module `inpconf.py`.
|
|
"""
|
|
import unittest
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestLoader().discover('./')
|
|
unittest.TextTestRunner(verbosity=2, buffer=True).run(suite)
|
|
|