1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
import os
from unittest import TestCase
from finalcif.tools.settings import FinalCifSettings
class TestFinalCifSettings(TestCase):
def setUp(self) -> None:
os.environ["RUNNING_TEST"] = 'True'
self.s = FinalCifSettings()
def test_load_property_values_by_key(self):
result = [(0, ''), (1, 'N~2~'), (2, 'He'), (3, 'vacuum'), (4, 'mother liquor'), (5, 'Ar'), (6, 'H~2~')]
self.assertEqual(result, self.s.load_property_values_by_key('_diffrn_ambient_environment'))
def test_load_cif_keys_of_properties(self):
self.assertEqual(['_chemical_absolute_configuration', '_exptl_absorpt_correction_type'],
self.s.load_cif_keys_of_properties()[:2])
def test_load_property_values_by_key_empty(self):
self.assertEqual([(0, '')], self.s.load_property_values_by_key(''))
|