Class: Homebrew::TestBot::BottlesFetch Private
- Inherits:
-
TestFormulae
- Object
- Test
- TestFormulae
- Homebrew::TestBot::BottlesFetch
- Defined in:
- test_bot/bottles_fetch.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.
Instance Attribute Summary collapse
Attributes inherited from TestFormulae
#artifact_cache, #skipped_or_failed_formulae
Attributes inherited from Test
Instance Method Summary collapse
- #run!(args:) ⇒ void private
Methods inherited from TestFormulae
Methods inherited from Test
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
Constructor Details
This class inherits a constructor from Homebrew::TestBot::TestFormulae
Instance Attribute Details
#testing_formulae ⇒ Array<String>
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.
8 9 10 |
# File 'test_bot/bottles_fetch.rb', line 8 def testing_formulae @testing_formulae end |
Instance Method Details
#run!(args:) ⇒ void
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.
This method returns an undefined value.
11 12 13 14 15 16 17 18 19 20 |
# File 'test_bot/bottles_fetch.rb', line 11 def run!(args:) info_header "Testing formulae:" puts testing_formulae puts formulae_by_tag.each do |tag, formulae| fetch_bottles!(tag, formulae, args:) puts end end |