3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-18 08:53:39 +02:00
dft_tools/python/vasp/test/_inpconf/test_inpconf.py
Oleg E. Peil b285f37eca Added some new tests
New tests for the recently implemented parsers (for DOSMESH, EWINDOW,
and TRANSFILE) have been added.
2015-11-13 14:38:20 +01: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)