Home | History | Annotate | Download | only in commands

Lines Matching full:self

34     def _default_options(self):
48 def test_build(self):
50 self.assert_execute_outputs(Build(), [], options=self._default_options(), expected_stderr=expected_stderr)
52 def test_build_and_test(self):
54 self.assert_execute_outputs(BuildAndTest(), [], options=self._default_options(), expected_stderr=expected_stderr)
56 def test_apply_attachment(self):
57 options = self._default_options()
61 self.assert_execute_outputs(ApplyAttachment(), [197], options=options, expected_stderr=expected_stderr)
63 def test_apply_patches(self):
64 options = self._default_options()
68 self.assert_execute_outputs(ApplyFromBug(), [42], options=options, expected_stderr=expected_stderr)
70 def test_land_diff(self):
72 self.assert_execute_outputs(Land(), [42], options=self._default_options(), expected_stderr=expected_stderr)
74 def test_check_style(self):
76 self.assert_execute_outputs(CheckStyle(), [197], options=self._default_options(), expected_stderr=expected_stderr)
78 def test_build_attachment(self):
80 self.assert_execute_outputs(BuildAttachment(), [197], options=self._default_options(), expected_stderr=expected_stderr)
82 def test_land_attachment(self):
94 self.assert_execute_outputs(LandAttachment(), [197], options=self._default_options(), expected_stderr=expected_stderr)
96 def test_land_patches(self):
117 self.assert_execute_outputs(LandFromBug(), [42], options=self._default_options(), expected_stderr=expected_stderr)
119 def test_rollout(self):
121 self.assert_execute_outputs(Rollout(), [852, "Reason"], options=self._default_options(), expected_stderr=expected_stderr)
123 def test_complete_rollout(self):
124 options = self._default_options()
127 self.assert_execute_outputs(Rollout(), [852, "Reason"], options=options, expected_stderr=expected_stderr)