| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
| 20 | class AWSBaseActionTestCase(BaseActionTestCase): |
||
| 21 | __test__ = False |
||
| 22 | |||
| 23 | def setUp(self): |
||
| 24 | super(AWSBaseActionTestCase, self).setUp() |
||
| 25 | |||
| 26 | self._full_config = self.load_yaml('full.yaml') |
||
| 27 | |||
| 28 | def load_yaml(self, filename): |
||
| 29 | return yaml.safe_load(self.get_fixture_content(filename)) |
||
| 30 | |||
| 31 | @property |
||
| 32 | def full_config(self): |
||
| 33 | return self._full_config |
||
| 34 |