HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //usr/lib/ruby/gems/3.2.0/gems/rbs-2.8.2/stdlib/minitest/0/minitest/reportable.rbs
# <!-- rdoc-file=lib/minitest.rb -->
# Shared code for anything that can get passed to a Reporter. See Minitest::Test
# & Minitest::Result.
#
module Minitest::Reportable
  # <!--
  #   rdoc-file=lib/minitest.rb
  #   - passed?()
  # -->
  # Did this run pass?
  #
  # Note: skipped runs are not considered passing, but they don't cause the
  # process to exit non-zero.
  #
  def passed?: () -> untyped

  # <!--
  #   rdoc-file=lib/minitest.rb
  #   - location()
  # -->
  # The location identifier of this test. Depends on a method existing called
  # class_name.
  #
  def location: () -> ::String

  def class_name: () -> untyped

  # <!--
  #   rdoc-file=lib/minitest.rb
  #   - result_code()
  # -->
  # Returns ".", "F", or "E" based on the result of the run.
  #
  def result_code: () -> untyped

  # <!--
  #   rdoc-file=lib/minitest.rb
  #   - skipped?()
  # -->
  # Was this run skipped?
  #
  def skipped?: () -> untyped

  # <!--
  #   rdoc-file=lib/minitest.rb
  #   - error?()
  # -->
  # Did this run error?
  #
  def error?: () -> untyped
end