3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-18 11:15:32 +02:00
dft_tools/test/plovasp/vaspio/test_doscar.py
2016-03-10 16:52:37 +01:00

37 lines
851 B
Python

r"""
Tests for class 'Doscar' from module 'vaspio'
"""
import os
import rpath
_rpath = os.path.dirname(rpath.__file__) + '/'
import mytest
import numpy as np
from applications.dft.converters.plovasp.vaspio import Doscar
################################################################################
#
# TestDoscar
#
################################################################################
class TestDoscar(mytest.MyTestCase):
"""
Function:
def Doscar.from_file(vasp_dir, dos_filename)
Scenarios:
- correct DOSCAR file
"""
# Scenario 1
def test_example(self):
filename = 'DOSCAR.example'
doscar = Doscar()
doscar.from_file(vasp_dir=_rpath, dos_filename=filename)
test_efermi = doscar.efermi
expected = 5.84395237
self.assertAlmostEqual(test_efermi, expected)