Class: Homebrew::TestBot::Test Private
- Includes:
- Utils::Output::Mixin
- Defined in:
- test_bot/test.rb
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
Direct Known Subclasses
Instance Attribute Summary collapse
- #steps ⇒ Array<Step> readonly private
Instance Method Summary collapse
- #failed_steps ⇒ Array<Step> private
- #ignored_steps ⇒ Array<Step> private
Methods included from Utils::Output::Mixin
#odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Instance Attribute Details
#steps ⇒ Array<Step> (readonly)
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
23 24 25 |
# File 'test_bot/test.rb', line 23 def steps @steps end |
Instance Method Details
#failed_steps ⇒ Array<Step>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
13 14 15 |
# File 'test_bot/test.rb', line 13 def failed_steps @steps.select(&:failed?) end |
#ignored_steps ⇒ Array<Step>
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
18 19 20 |
# File 'test_bot/test.rb', line 18 def ignored_steps @steps.select(&:ignored?) end |