Class: MacOSRunnerSpec Private

Inherits:
T::Struct
  • Object
show all
Defined in:
macos_runner_spec.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

Instance Method Summary collapse

Constructor Details

#initialize(name:, runner:, timeout:, cleanup:, testing_formulae: []) ⇒ void

Parameters:

  • name (String)
  • runner (String)
  • timeout (Integer)
  • cleanup (Boolean)
  • testing_formulae (Array<String>) (defaults to: [])


# File ''

const :name, String
const :runner, String
const :timeout, Integer
const :cleanup, T::Boolean
prop  :testing_formulae, T::Array[String], default: []

Instance Attribute Details

#cleanupBoolean (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.

Returns the value of prop cleanup.

Returns:

  • (Boolean)


# File ''

const :cleanup, T::Boolean

#nameString (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.

Returns the value of prop name.

Returns:



# File ''

const :name, String

#runnerString (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.

Returns the value of prop runner.

Returns:



# File ''

const :runner, String

#testing_formulaeArray<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.

Returns the value of prop testing_formulae.

Returns:



# File ''

prop  :testing_formulae, T::Array[String], default: []

#timeoutInteger (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.

Returns the value of prop timeout.

Returns:

  • (Integer)


# File ''

const :timeout, Integer

Instance Method Details

#to_hHash

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.

Returns:



20
21
22
23
24
25
26
27
28
# File 'macos_runner_spec.rb', line 20

def to_h
  {
    name:,
    runner:,
    timeout:,
    cleanup:,
    testing_formulae: testing_formulae.join(","),
  }
end