Conditions | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | from teamcity_base_test_case import TeamCityBaseActionTestCase |
||
9 | def test_run_api_404(self): |
||
10 | action, adapter = self._get_action_status_code( |
||
11 | 'POST', |
||
12 | "mock://example.teamcityagent.com:8080/httpAuth/rest/buildQueue", |
||
13 | status_code=404) |
||
14 | |||
15 | self.assertRaises(ValueError, action.run, "test", "testbranch") |
||
16 | |||
27 |