Example #1
0
 def test_check_one_implies_others(self):
     a = InputFileLoaderCheckerSaver()
     a.a = 4
     a.c = None
     a._one_implies_others = ['a c'.split()]
     assert_raises(ValueError, a.check_input_attributes)
Example #2
0
 def test_check_one_implies_others(self):
     a = InputFileLoaderCheckerSaver()
     a.a = 4
     a.c=None
     a._one_implies_others = ['a c'.split()]
     assert_raises(ValueError, a.check_input_attributes)