def setUp(self):
     """Setup"""
     super(TestParameterUsed, self).setUp()
     self.collection.register(Used())
     self.success_templates = [
         'fixtures/templates/good/parameters/used_transforms.yaml'
     ]
Exemple #2
0
 def match(self, cfn):
     converted_matches = []
     for m in Used.match(self, cfn):
         converted_matches.append(RuleMatch(m.path, self.shortdesc))
     return converted_matches
 def setUp(self):
     """Setup"""
     super(TestParameterUsed, self).setUp()
     self.collection.register(Used())