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 ⇒ Object readonly private
Instance Method Summary collapse
- #failed_steps ⇒ Object private
- #ignored_steps ⇒ Object 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_duration, #pretty_installed, #pretty_outdated, #pretty_uninstalled
Instance Attribute Details
#steps ⇒ Object (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.
20 21 22 |
# File 'test_bot/test.rb', line 20 def steps @steps end |
Instance Method Details
#failed_steps ⇒ Object
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.
12 13 14 |
# File 'test_bot/test.rb', line 12 def failed_steps @steps.select(&:failed?) end |
#ignored_steps ⇒ Object
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.
16 17 18 |
# File 'test_bot/test.rb', line 16 def ignored_steps @steps.select(&:ignored?) end |