Total Complexity | 1 |
Total Lines | 7 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
26 | class OrionHealthTestCase(OrionBaseActionTestCase): |
||
27 | __test__ = True |
||
28 | action_cls = OrionHealth |
||
29 | |||
30 | def test_run_connect_fail(self): |
||
31 | action = self.setup_connect_fail() |
||
32 | self.assertRaises(ValueError, action.run, "orion") |
||
33 |