unit test : write a blacklisted module
This commit is contained in:
parent
408aa10210
commit
09b1daa7b9
1 changed files with 3 additions and 0 deletions
|
@ -211,6 +211,9 @@ def test_blacklist(self):
|
|||
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)
|
||||
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)
|
||||
|
||||
def test_conflicts(self):
|
||||
spack.modules.CONFIGURATION = configuration_conflicts
|
||||
|
|
Loading…
Reference in a new issue