3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-05 19:06:03 +02:00
dft_tools/python/converters/vasp/test/inpconf/test_inpconf.py
Oleg E. Peil 9d4fb22572 Rearranged test cases for 'inpconf.py'.
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.
2015-10-11 13:55:04 +02:00

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)