unit test : write a whitelisted module

This commit is contained in:
alalazo 2016-06-04 16:46:15 +02:00
parent 09b1daa7b9
commit 422d3d4db6

View file

@ -214,6 +214,11 @@ def test_blacklist(self):
spec = spack.spec.Spec('callpath arch=x86-linux')
# Returns a StringIO instead of a string as no module file was written
self.assertRaises(AttributeError, self.get_modulefile_content, spec)
spec = spack.spec.Spec('zmpi arch=x86-linux')
content = self.get_modulefile_content(spec)
print('\n'.join(content))
self.assertEqual(len([x for x in content if 'is-loaded' in x]), 1)
self.assertEqual(len([x for x in content if 'module load ' in x]), 1)
def test_conflicts(self):
spack.modules.CONFIGURATION = configuration_conflicts