def test_verify_fail(self):
     ic = IdenticalConstraint(params_checking=False)
     assert not ic.verify(['comp1', 'hello', 'comp1'], {})
 def test_verify_fail(self):
     ic = IdenticalConstraint(params_checking=False)
     assert not ic.verify(['comp1', 'hello', 'comp1'])
 def test_verify_success(self):
     ic = IdenticalConstraint(params_checking=False)
     assert ic.verify(['comp1', 'comp1', 'comp1'], {})
 def test_verify_success(self):
     ic = IdenticalConstraint(params_checking=False)
     assert ic.verify(['comp1', 'comp1', 'comp1'])