Update RBI files for minitest.
Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow.
This commit is contained in:
parent
bff85ab9a8
commit
10276f4dcc
@ -12,7 +12,7 @@ module Minitest
|
|||||||
# Internal run method. Responsible for telling all Runnable
|
# Internal run method. Responsible for telling all Runnable
|
||||||
# sub-classes to run.
|
# sub-classes to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#176
|
# source://minitest//lib/minitest.rb#198
|
||||||
def __run(reporter, options); end
|
def __run(reporter, options); end
|
||||||
|
|
||||||
# A simple hook allowing you to run a block of code after everything
|
# A simple hook allowing you to run a block of code after everything
|
||||||
@ -43,16 +43,19 @@ module Minitest
|
|||||||
# source://minitest//lib/minitest.rb#18
|
# source://minitest//lib/minitest.rb#18
|
||||||
def cattr_accessor(name); end
|
def cattr_accessor(name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1134
|
# source://minitest//lib/minitest.rb#1147
|
||||||
def clock_time; end
|
def clock_time; end
|
||||||
|
|
||||||
|
# source://minitest//lib/minitest.rb#177
|
||||||
|
def empty_run!(options); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
def extensions; end
|
def extensions; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
def extensions=(_arg0); end
|
def extensions=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#271
|
# source://minitest//lib/minitest.rb#293
|
||||||
def filter_backtrace(bt); end
|
def filter_backtrace(bt); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
@ -73,7 +76,7 @@ module Minitest
|
|||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
def parallel_executor=(_arg0); end
|
def parallel_executor=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#189
|
# source://minitest//lib/minitest.rb#211
|
||||||
def process_args(args = T.unsafe(nil)); end
|
def process_args(args = T.unsafe(nil)); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
@ -92,7 +95,7 @@ module Minitest
|
|||||||
# Minitest.run(args)
|
# Minitest.run(args)
|
||||||
# Minitest.__run(reporter, options)
|
# Minitest.__run(reporter, options)
|
||||||
# Runnable.runnables.each
|
# Runnable.runnables.each
|
||||||
# runnable.run(reporter, options)
|
# runnable_klass.run(reporter, options)
|
||||||
# self.runnable_methods.each
|
# self.runnable_methods.each
|
||||||
# self.run_one_method(self, runnable_method, reporter)
|
# self.run_one_method(self, runnable_method, reporter)
|
||||||
# Minitest.run_one_method(klass, runnable_method)
|
# Minitest.run_one_method(klass, runnable_method)
|
||||||
@ -101,7 +104,7 @@ module Minitest
|
|||||||
# source://minitest//lib/minitest.rb#143
|
# source://minitest//lib/minitest.rb#143
|
||||||
def run(args = T.unsafe(nil)); end
|
def run(args = T.unsafe(nil)); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1125
|
# source://minitest//lib/minitest.rb#1138
|
||||||
def run_one_method(klass, method_name); end
|
def run_one_method(klass, method_name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
@ -115,24 +118,24 @@ end
|
|||||||
# Defines the API for Reporters. Subclass this and override whatever
|
# Defines the API for Reporters. Subclass this and override whatever
|
||||||
# you want. Go nuts.
|
# you want. Go nuts.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#627
|
# source://minitest//lib/minitest.rb#639
|
||||||
class Minitest::AbstractReporter
|
class Minitest::AbstractReporter
|
||||||
# @return [AbstractReporter] a new instance of AbstractReporter
|
# @return [AbstractReporter] a new instance of AbstractReporter
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#629
|
# source://minitest//lib/minitest.rb#641
|
||||||
def initialize; end
|
def initialize; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#664
|
# source://minitest//lib/minitest.rb#676
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# About to start running a test. This allows a reporter to show
|
# About to start running a test. This allows a reporter to show
|
||||||
# that it is starting or that we are in the middle of a test run.
|
# that it is starting or that we are in the middle of a test run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#643
|
# source://minitest//lib/minitest.rb#655
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# Output and record the result of the test. Call
|
# Output and record the result of the test. Call
|
||||||
@ -140,43 +143,43 @@ class Minitest::AbstractReporter
|
|||||||
# result character string. Stores the result of the run if the run
|
# result character string. Stores the result of the run if the run
|
||||||
# did not pass.
|
# did not pass.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#652
|
# source://minitest//lib/minitest.rb#664
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# Outputs the summary of the run.
|
# Outputs the summary of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#658
|
# source://minitest//lib/minitest.rb#670
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# Starts reporting on the run.
|
# Starts reporting on the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#636
|
# source://minitest//lib/minitest.rb#648
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#668
|
# source://minitest//lib/minitest.rb#680
|
||||||
def synchronize(&block); end
|
def synchronize(&block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Represents run failures.
|
# Represents run failures.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#951
|
# source://minitest//lib/minitest.rb#963
|
||||||
class Minitest::Assertion < ::Exception
|
class Minitest::Assertion < ::Exception
|
||||||
# source://minitest//lib/minitest.rb#954
|
# source://minitest//lib/minitest.rb#966
|
||||||
def error; end
|
def error; end
|
||||||
|
|
||||||
# Where was this run before an assertion was raised?
|
# Where was this run before an assertion was raised?
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#961
|
# source://minitest//lib/minitest.rb#973
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#968
|
# source://minitest//lib/minitest.rb#981
|
||||||
def result_code; end
|
def result_code; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#972
|
# source://minitest//lib/minitest.rb#985
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#952
|
# source://minitest//lib/minitest.rb#964
|
||||||
Minitest::Assertion::RE = T.let(T.unsafe(nil), Regexp)
|
Minitest::Assertion::RE = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
# Minitest Assertions. All assertion methods accept a +msg+ which is
|
# Minitest Assertions. All assertion methods accept a +msg+ which is
|
||||||
@ -623,77 +626,77 @@ Minitest::Assertions::UNDEFINED = T.let(T.unsafe(nil), Object)
|
|||||||
#
|
#
|
||||||
# See Minitest.backtrace_filter=.
|
# See Minitest.backtrace_filter=.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1096
|
# source://minitest//lib/minitest.rb#1109
|
||||||
class Minitest::BacktraceFilter
|
class Minitest::BacktraceFilter
|
||||||
# @return [BacktraceFilter] a new instance of BacktraceFilter
|
# @return [BacktraceFilter] a new instance of BacktraceFilter
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1102
|
# source://minitest//lib/minitest.rb#1115
|
||||||
def initialize(regexp = T.unsafe(nil)); end
|
def initialize(regexp = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Filter +bt+ to something useful. Returns the whole thing if
|
# Filter +bt+ to something useful. Returns the whole thing if
|
||||||
# $DEBUG (ruby) or $MT_DEBUG (env).
|
# $DEBUG (ruby) or $MT_DEBUG (env).
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1110
|
# source://minitest//lib/minitest.rb#1123
|
||||||
def filter(bt); end
|
def filter(bt); end
|
||||||
|
|
||||||
# Returns the value of attribute regexp.
|
# Returns the value of attribute regexp.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1100
|
# source://minitest//lib/minitest.rb#1113
|
||||||
def regexp; end
|
def regexp; end
|
||||||
|
|
||||||
# Sets the attribute regexp
|
# Sets the attribute regexp
|
||||||
#
|
#
|
||||||
# @param value the value to set the attribute regexp to.
|
# @param value the value to set the attribute regexp to.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1100
|
# source://minitest//lib/minitest.rb#1113
|
||||||
def regexp=(_arg0); end
|
def regexp=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1098
|
# source://minitest//lib/minitest.rb#1111
|
||||||
Minitest::BacktraceFilter::MT_RE = T.let(T.unsafe(nil), Regexp)
|
Minitest::BacktraceFilter::MT_RE = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
# Dispatch to multiple reporters as one.
|
# Dispatch to multiple reporters as one.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#902
|
# source://minitest//lib/minitest.rb#914
|
||||||
class Minitest::CompositeReporter < ::Minitest::AbstractReporter
|
class Minitest::CompositeReporter < ::Minitest::AbstractReporter
|
||||||
# @return [CompositeReporter] a new instance of CompositeReporter
|
# @return [CompositeReporter] a new instance of CompositeReporter
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#906
|
# source://minitest//lib/minitest.rb#918
|
||||||
def initialize(*reporters); end
|
def initialize(*reporters); end
|
||||||
|
|
||||||
# Add another reporter to the mix.
|
# Add another reporter to the mix.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#918
|
# source://minitest//lib/minitest.rb#930
|
||||||
def <<(reporter); end
|
def <<(reporter); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#911
|
# source://minitest//lib/minitest.rb#923
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#922
|
# source://minitest//lib/minitest.rb#934
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#930
|
# source://minitest//lib/minitest.rb#942
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#937
|
# source://minitest//lib/minitest.rb#949
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#943
|
# source://minitest//lib/minitest.rb#955
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# The list of reporters to dispatch to.
|
# The list of reporters to dispatch to.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#904
|
# source://minitest//lib/minitest.rb#916
|
||||||
def reporters; end
|
def reporters; end
|
||||||
|
|
||||||
# The list of reporters to dispatch to.
|
# The list of reporters to dispatch to.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#904
|
# source://minitest//lib/minitest.rb#916
|
||||||
def reporters=(_arg0); end
|
def reporters=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#926
|
# source://minitest//lib/minitest.rb#938
|
||||||
def start; end
|
def start; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -722,48 +725,48 @@ end
|
|||||||
# # ... lots of test methods ...
|
# # ... lots of test methods ...
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1040
|
# source://minitest//lib/minitest.rb#1053
|
||||||
module Minitest::Guard
|
module Minitest::Guard
|
||||||
# Is this running on jruby?
|
# Is this running on jruby?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1045
|
# source://minitest//lib/minitest.rb#1058
|
||||||
def jruby?(platform = T.unsafe(nil)); end
|
def jruby?(platform = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Is this running on maglev?
|
# Is this running on maglev?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1052
|
# source://minitest//lib/minitest.rb#1065
|
||||||
def maglev?(platform = T.unsafe(nil)); end
|
def maglev?(platform = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Is this running on mri?
|
# Is this running on mri?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1062
|
# source://minitest//lib/minitest.rb#1075
|
||||||
def mri?(platform = T.unsafe(nil)); end
|
def mri?(platform = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Is this running on macOS?
|
# Is this running on macOS?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1069
|
# source://minitest//lib/minitest.rb#1082
|
||||||
def osx?(platform = T.unsafe(nil)); end
|
def osx?(platform = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Is this running on rubinius?
|
# Is this running on rubinius?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1076
|
# source://minitest//lib/minitest.rb#1089
|
||||||
def rubinius?(platform = T.unsafe(nil)); end
|
def rubinius?(platform = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Is this running on windows?
|
# Is this running on windows?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1086
|
# source://minitest//lib/minitest.rb#1099
|
||||||
def windows?(platform = T.unsafe(nil)); end
|
def windows?(platform = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -826,36 +829,36 @@ end
|
|||||||
# plugin, pull this out of the composite and replace it with your
|
# plugin, pull this out of the composite and replace it with your
|
||||||
# own.
|
# own.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#699
|
# source://minitest//lib/minitest.rb#711
|
||||||
class Minitest::ProgressReporter < ::Minitest::Reporter
|
class Minitest::ProgressReporter < ::Minitest::Reporter
|
||||||
# source://minitest//lib/minitest.rb#700
|
# source://minitest//lib/minitest.rb#712
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#707
|
# source://minitest//lib/minitest.rb#719
|
||||||
def record(result); end
|
def record(result); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Shared code for anything that can get passed to a Reporter. See
|
# Shared code for anything that can get passed to a Reporter. See
|
||||||
# Minitest::Test & Minitest::Result.
|
# Minitest::Test & Minitest::Result.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#521
|
# source://minitest//lib/minitest.rb#533
|
||||||
module Minitest::Reportable
|
module Minitest::Reportable
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#543
|
# source://minitest//lib/minitest.rb#555
|
||||||
def class_name; end
|
def class_name; end
|
||||||
|
|
||||||
# Did this run error?
|
# Did this run error?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#564
|
# source://minitest//lib/minitest.rb#576
|
||||||
def error?; end
|
def error?; end
|
||||||
|
|
||||||
# The location identifier of this test. Depends on a method
|
# The location identifier of this test. Depends on a method
|
||||||
# existing called class_name.
|
# existing called class_name.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#538
|
# source://minitest//lib/minitest.rb#550
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -865,50 +868,50 @@ module Minitest::Reportable
|
|||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#528
|
# source://minitest//lib/minitest.rb#540
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# Returns ".", "F", or "E" based on the result of the run.
|
# Returns ".", "F", or "E" based on the result of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#550
|
# source://minitest//lib/minitest.rb#562
|
||||||
def result_code; end
|
def result_code; end
|
||||||
|
|
||||||
# Was this run skipped?
|
# Was this run skipped?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#557
|
# source://minitest//lib/minitest.rb#569
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#532
|
# source://minitest//lib/minitest.rb#544
|
||||||
Minitest::Reportable::BASE_DIR = T.let(T.unsafe(nil), String)
|
Minitest::Reportable::BASE_DIR = T.let(T.unsafe(nil), String)
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#675
|
# source://minitest//lib/minitest.rb#687
|
||||||
class Minitest::Reporter < ::Minitest::AbstractReporter
|
class Minitest::Reporter < ::Minitest::AbstractReporter
|
||||||
# @return [Reporter] a new instance of Reporter
|
# @return [Reporter] a new instance of Reporter
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#684
|
# source://minitest//lib/minitest.rb#696
|
||||||
def initialize(io = T.unsafe(nil), options = T.unsafe(nil)); end
|
def initialize(io = T.unsafe(nil), options = T.unsafe(nil)); end
|
||||||
|
|
||||||
# The IO used to report.
|
# The IO used to report.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#677
|
# source://minitest//lib/minitest.rb#689
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# The IO used to report.
|
# The IO used to report.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#677
|
# source://minitest//lib/minitest.rb#689
|
||||||
def io=(_arg0); end
|
def io=(_arg0); end
|
||||||
|
|
||||||
# Command-line options for this run.
|
# Command-line options for this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#682
|
# source://minitest//lib/minitest.rb#694
|
||||||
def options; end
|
def options; end
|
||||||
|
|
||||||
# Command-line options for this run.
|
# Command-line options for this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#682
|
# source://minitest//lib/minitest.rb#694
|
||||||
def options=(_arg0); end
|
def options=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -918,80 +921,80 @@ end
|
|||||||
# blow up. By using Result.from(a_test) you can be reasonably sure
|
# blow up. By using Result.from(a_test) you can be reasonably sure
|
||||||
# that the test result can be marshalled.
|
# that the test result can be marshalled.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#576
|
# source://minitest//lib/minitest.rb#588
|
||||||
class Minitest::Result < ::Minitest::Runnable
|
class Minitest::Result < ::Minitest::Runnable
|
||||||
include ::Minitest::Reportable
|
include ::Minitest::Reportable
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#610
|
# source://minitest//lib/minitest.rb#622
|
||||||
def class_name; end
|
def class_name; end
|
||||||
|
|
||||||
# The class name of the test result.
|
# The class name of the test result.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#585
|
# source://minitest//lib/minitest.rb#597
|
||||||
def klass; end
|
def klass; end
|
||||||
|
|
||||||
# The class name of the test result.
|
# The class name of the test result.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#585
|
# source://minitest//lib/minitest.rb#597
|
||||||
def klass=(_arg0); end
|
def klass=(_arg0); end
|
||||||
|
|
||||||
# The location of the test method.
|
# The location of the test method.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#590
|
# source://minitest//lib/minitest.rb#602
|
||||||
def source_location; end
|
def source_location; end
|
||||||
|
|
||||||
# The location of the test method.
|
# The location of the test method.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#590
|
# source://minitest//lib/minitest.rb#602
|
||||||
def source_location=(_arg0); end
|
def source_location=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#614
|
# source://minitest//lib/minitest.rb#626
|
||||||
def to_s; end
|
def to_s; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# Create a new test result from a Runnable instance.
|
# Create a new test result from a Runnable instance.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#595
|
# source://minitest//lib/minitest.rb#607
|
||||||
def from(runnable); end
|
def from(runnable); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# re-open
|
# re-open
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#284
|
# source://minitest//lib/minitest.rb#306
|
||||||
class Minitest::Runnable
|
class Minitest::Runnable
|
||||||
# @return [Runnable] a new instance of Runnable
|
# @return [Runnable] a new instance of Runnable
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#452
|
# source://minitest//lib/minitest.rb#464
|
||||||
def initialize(name); end
|
def initialize(name); end
|
||||||
|
|
||||||
# Number of assertions executed in this run.
|
# Number of assertions executed in this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#288
|
# source://minitest//lib/minitest.rb#310
|
||||||
def assertions; end
|
def assertions; end
|
||||||
|
|
||||||
# Number of assertions executed in this run.
|
# Number of assertions executed in this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#288
|
# source://minitest//lib/minitest.rb#310
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#448
|
# source://minitest//lib/minitest.rb#460
|
||||||
def failure; end
|
def failure; end
|
||||||
|
|
||||||
# An assertion raised during the run, if any.
|
# An assertion raised during the run, if any.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#293
|
# source://minitest//lib/minitest.rb#315
|
||||||
def failures; end
|
def failures; end
|
||||||
|
|
||||||
# An assertion raised during the run, if any.
|
# An assertion raised during the run, if any.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#293
|
# source://minitest//lib/minitest.rb#315
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#434
|
# source://minitest//lib/minitest.rb#446
|
||||||
def marshal_dump; end
|
def marshal_dump; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#444
|
# source://minitest//lib/minitest.rb#456
|
||||||
def marshal_load(ary); end
|
def marshal_load(ary); end
|
||||||
|
|
||||||
# Metadata you attach to the test results that get sent to the reporter.
|
# Metadata you attach to the test results that get sent to the reporter.
|
||||||
@ -1001,29 +1004,29 @@ class Minitest::Runnable
|
|||||||
# NOTE: this data *must* be plain (read: marshal-able) data!
|
# NOTE: this data *must* be plain (read: marshal-able) data!
|
||||||
# Hashes! Arrays! Strings!
|
# Hashes! Arrays! Strings!
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#467
|
# source://minitest//lib/minitest.rb#479
|
||||||
def metadata; end
|
def metadata; end
|
||||||
|
|
||||||
# Sets metadata, mainly used for +Result.from+.
|
# Sets metadata, mainly used for +Result.from+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#474
|
# source://minitest//lib/minitest.rb#486
|
||||||
def metadata=(_arg0); end
|
def metadata=(_arg0); end
|
||||||
|
|
||||||
# Returns true if metadata exists.
|
# Returns true if metadata exists.
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#479
|
# source://minitest//lib/minitest.rb#491
|
||||||
def metadata?; end
|
def metadata?; end
|
||||||
|
|
||||||
# Name of the run.
|
# Name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#311
|
# source://minitest//lib/minitest.rb#333
|
||||||
def name; end
|
def name; end
|
||||||
|
|
||||||
# Set the name of the run.
|
# Set the name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#318
|
# source://minitest//lib/minitest.rb#340
|
||||||
def name=(o); end
|
def name=(o); end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -1034,7 +1037,7 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#496
|
# source://minitest//lib/minitest.rb#508
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# Returns a single character string to print based on the result
|
# Returns a single character string to print based on the result
|
||||||
@ -1043,14 +1046,14 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#505
|
# source://minitest//lib/minitest.rb#517
|
||||||
def result_code; end
|
def result_code; end
|
||||||
|
|
||||||
# Runs a single method. Needs to return self.
|
# Runs a single method. Needs to return self.
|
||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#486
|
# source://minitest//lib/minitest.rb#498
|
||||||
def run; end
|
def run; end
|
||||||
|
|
||||||
# Was this run skipped? See #passed? for more information.
|
# Was this run skipped? See #passed? for more information.
|
||||||
@ -1058,42 +1061,42 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#512
|
# source://minitest//lib/minitest.rb#524
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#298
|
# source://minitest//lib/minitest.rb#320
|
||||||
def time; end
|
def time; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#298
|
# source://minitest//lib/minitest.rb#320
|
||||||
def time=(_arg0); end
|
def time=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#300
|
# source://minitest//lib/minitest.rb#322
|
||||||
def time_it; end
|
def time_it; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# source://minitest//lib/minitest.rb#1144
|
# source://minitest//lib/minitest.rb#1157
|
||||||
def inherited(klass); end
|
def inherited(klass); end
|
||||||
|
|
||||||
# Returns all instance methods matching the pattern +re+.
|
# Returns all instance methods matching the pattern +re+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#325
|
# source://minitest//lib/minitest.rb#347
|
||||||
def methods_matching(re); end
|
def methods_matching(re); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#404
|
# source://minitest//lib/minitest.rb#416
|
||||||
def on_signal(name, action); end
|
def on_signal(name, action); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#329
|
# source://minitest//lib/minitest.rb#351
|
||||||
def reset; end
|
def reset; end
|
||||||
|
|
||||||
# Responsible for running all runnable methods in a given class,
|
# Responsible for running all runnable methods in a given class,
|
||||||
# each in its own instance. Each instance is passed to the
|
# each in its own instance. Each instance is passed to the
|
||||||
# reporter to record.
|
# reporter to record.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#340
|
# source://minitest//lib/minitest.rb#362
|
||||||
def run(reporter, options = T.unsafe(nil)); end
|
def run(reporter, options = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Runs a single method and has the reporter record the result.
|
# Runs a single method and has the reporter record the result.
|
||||||
@ -1101,7 +1104,7 @@ class Minitest::Runnable
|
|||||||
# that subclasses can specialize the running of an individual
|
# that subclasses can specialize the running of an individual
|
||||||
# test. See Minitest::ParallelTest::ClassMethods for an example.
|
# test. See Minitest::ParallelTest::ClassMethods for an example.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#376
|
# source://minitest//lib/minitest.rb#388
|
||||||
def run_one_method(klass, method_name, reporter); end
|
def run_one_method(klass, method_name, reporter); end
|
||||||
|
|
||||||
# Each subclass of Runnable is responsible for overriding this
|
# Each subclass of Runnable is responsible for overriding this
|
||||||
@ -1109,33 +1112,33 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#421
|
# source://minitest//lib/minitest.rb#433
|
||||||
def runnable_methods; end
|
def runnable_methods; end
|
||||||
|
|
||||||
# Returns all subclasses of Runnable.
|
# Returns all subclasses of Runnable.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#428
|
# source://minitest//lib/minitest.rb#440
|
||||||
def runnables; end
|
def runnables; end
|
||||||
|
|
||||||
# Defines the order to run tests (:random by default). Override
|
# Defines the order to run tests (:random by default). Override
|
||||||
# this or use a convenience method to change it for your tests.
|
# this or use a convenience method to change it for your tests.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#385
|
# source://minitest//lib/minitest.rb#397
|
||||||
def test_order; end
|
def test_order; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#389
|
# source://minitest//lib/minitest.rb#401
|
||||||
def with_info_handler(reporter, &block); end
|
def with_info_handler(reporter, &block); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#402
|
# source://minitest//lib/minitest.rb#414
|
||||||
Minitest::Runnable::SIGNALS = T.let(T.unsafe(nil), Hash)
|
Minitest::Runnable::SIGNALS = T.let(T.unsafe(nil), Hash)
|
||||||
|
|
||||||
# Assertion raised when skipping a run.
|
# Assertion raised when skipping a run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#980
|
# source://minitest//lib/minitest.rb#993
|
||||||
class Minitest::Skip < ::Minitest::Assertion
|
class Minitest::Skip < ::Minitest::Assertion
|
||||||
# source://minitest//lib/minitest.rb#981
|
# source://minitest//lib/minitest.rb#994
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1159,113 +1162,113 @@ end
|
|||||||
# end
|
# end
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#737
|
# source://minitest//lib/minitest.rb#749
|
||||||
class Minitest::StatisticsReporter < ::Minitest::Reporter
|
class Minitest::StatisticsReporter < ::Minitest::Reporter
|
||||||
# @return [StatisticsReporter] a new instance of StatisticsReporter
|
# @return [StatisticsReporter] a new instance of StatisticsReporter
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#779
|
# source://minitest//lib/minitest.rb#791
|
||||||
def initialize(io = T.unsafe(nil), options = T.unsafe(nil)); end
|
def initialize(io = T.unsafe(nil), options = T.unsafe(nil)); end
|
||||||
|
|
||||||
# Total number of assertions.
|
# Total number of assertions.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#739
|
# source://minitest//lib/minitest.rb#751
|
||||||
def assertions; end
|
def assertions; end
|
||||||
|
|
||||||
# Total number of assertions.
|
# Total number of assertions.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#739
|
# source://minitest//lib/minitest.rb#751
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#744
|
# source://minitest//lib/minitest.rb#756
|
||||||
def count; end
|
def count; end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#744
|
# source://minitest//lib/minitest.rb#756
|
||||||
def count=(_arg0); end
|
def count=(_arg0); end
|
||||||
|
|
||||||
# Total number of tests that erred.
|
# Total number of tests that erred.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#772
|
# source://minitest//lib/minitest.rb#784
|
||||||
def errors; end
|
def errors; end
|
||||||
|
|
||||||
# Total number of tests that erred.
|
# Total number of tests that erred.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#772
|
# source://minitest//lib/minitest.rb#784
|
||||||
def errors=(_arg0); end
|
def errors=(_arg0); end
|
||||||
|
|
||||||
# Total number of tests that failed.
|
# Total number of tests that failed.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#767
|
# source://minitest//lib/minitest.rb#779
|
||||||
def failures; end
|
def failures; end
|
||||||
|
|
||||||
# Total number of tests that failed.
|
# Total number of tests that failed.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#767
|
# source://minitest//lib/minitest.rb#779
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#792
|
# source://minitest//lib/minitest.rb#804
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#800
|
# source://minitest//lib/minitest.rb#812
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# Report on the tracked statistics.
|
# Report on the tracked statistics.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#810
|
# source://minitest//lib/minitest.rb#822
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# An +Array+ of test cases that failed or were skipped.
|
# An +Array+ of test cases that failed or were skipped.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#749
|
# source://minitest//lib/minitest.rb#761
|
||||||
def results; end
|
def results; end
|
||||||
|
|
||||||
# An +Array+ of test cases that failed or were skipped.
|
# An +Array+ of test cases that failed or were skipped.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#749
|
# source://minitest//lib/minitest.rb#761
|
||||||
def results=(_arg0); end
|
def results=(_arg0); end
|
||||||
|
|
||||||
# Total number of tests that where skipped.
|
# Total number of tests that where skipped.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#777
|
# source://minitest//lib/minitest.rb#789
|
||||||
def skips; end
|
def skips; end
|
||||||
|
|
||||||
# Total number of tests that where skipped.
|
# Total number of tests that where skipped.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#777
|
# source://minitest//lib/minitest.rb#789
|
||||||
def skips=(_arg0); end
|
def skips=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#796
|
# source://minitest//lib/minitest.rb#808
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# Time the test run started. If available, the monotonic clock is
|
# Time the test run started. If available, the monotonic clock is
|
||||||
# used and this is a +Float+, otherwise it's an instance of
|
# used and this is a +Float+, otherwise it's an instance of
|
||||||
# +Time+.
|
# +Time+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#756
|
# source://minitest//lib/minitest.rb#768
|
||||||
def start_time; end
|
def start_time; end
|
||||||
|
|
||||||
# Time the test run started. If available, the monotonic clock is
|
# Time the test run started. If available, the monotonic clock is
|
||||||
# used and this is a +Float+, otherwise it's an instance of
|
# used and this is a +Float+, otherwise it's an instance of
|
||||||
# +Time+.
|
# +Time+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#756
|
# source://minitest//lib/minitest.rb#768
|
||||||
def start_time=(_arg0); end
|
def start_time=(_arg0); end
|
||||||
|
|
||||||
# Test run time. If available, the monotonic clock is used and
|
# Test run time. If available, the monotonic clock is used and
|
||||||
# this is a +Float+, otherwise it's an instance of +Time+.
|
# this is a +Float+, otherwise it's an instance of +Time+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#762
|
# source://minitest//lib/minitest.rb#774
|
||||||
def total_time; end
|
def total_time; end
|
||||||
|
|
||||||
# Test run time. If available, the monotonic clock is used and
|
# Test run time. If available, the monotonic clock is used and
|
||||||
# this is a +Float+, otherwise it's an instance of +Time+.
|
# this is a +Float+, otherwise it's an instance of +Time+.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#762
|
# source://minitest//lib/minitest.rb#774
|
||||||
def total_time=(_arg0); end
|
def total_time=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1277,48 +1280,48 @@ end
|
|||||||
# plugin, pull this out of the composite and replace it with your
|
# plugin, pull this out of the composite and replace it with your
|
||||||
# own.
|
# own.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#831
|
# source://minitest//lib/minitest.rb#843
|
||||||
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
||||||
# source://minitest//lib/minitest.rb#865
|
# source://minitest//lib/minitest.rb#877
|
||||||
def aggregated_results(io); end
|
def aggregated_results(io); end
|
||||||
|
|
||||||
# Returns the value of attribute old_sync.
|
# Returns the value of attribute old_sync.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#833
|
# source://minitest//lib/minitest.rb#845
|
||||||
def old_sync; end
|
def old_sync; end
|
||||||
|
|
||||||
# Sets the attribute old_sync
|
# Sets the attribute old_sync
|
||||||
#
|
#
|
||||||
# @param value the value to set the attribute old_sync to.
|
# @param value the value to set the attribute old_sync to.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#833
|
# source://minitest//lib/minitest.rb#845
|
||||||
def old_sync=(_arg0); end
|
def old_sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#848
|
# source://minitest//lib/minitest.rb#860
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# :startdoc:
|
# :startdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#836
|
# source://minitest//lib/minitest.rb#848
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#860
|
# source://minitest//lib/minitest.rb#872
|
||||||
def statistics; end
|
def statistics; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#885
|
# source://minitest//lib/minitest.rb#897
|
||||||
def summary; end
|
def summary; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#832
|
# source://minitest//lib/minitest.rb#844
|
||||||
def sync; end
|
def sync; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#832
|
# source://minitest//lib/minitest.rb#844
|
||||||
def sync=(_arg0); end
|
def sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#881
|
# source://minitest//lib/minitest.rb#893
|
||||||
def to_s; end
|
def to_s; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1496,36 +1499,36 @@ Minitest::Test::TEARDOWN_METHODS = T.let(T.unsafe(nil), Array)
|
|||||||
|
|
||||||
# Assertion wrapping an unexpected error that was raised during a run.
|
# Assertion wrapping an unexpected error that was raised during a run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#989
|
# source://minitest//lib/minitest.rb#1002
|
||||||
class Minitest::UnexpectedError < ::Minitest::Assertion
|
class Minitest::UnexpectedError < ::Minitest::Assertion
|
||||||
include ::Minitest::Compress
|
include ::Minitest::Compress
|
||||||
|
|
||||||
# @return [UnexpectedError] a new instance of UnexpectedError
|
# @return [UnexpectedError] a new instance of UnexpectedError
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#995
|
# source://minitest//lib/minitest.rb#1008
|
||||||
def initialize(error); end
|
def initialize(error); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1008
|
# source://minitest//lib/minitest.rb#1021
|
||||||
def backtrace; end
|
def backtrace; end
|
||||||
|
|
||||||
# TODO: figure out how to use `cause` instead
|
# TODO: figure out how to use `cause` instead
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#993
|
# source://minitest//lib/minitest.rb#1006
|
||||||
def error; end
|
def error; end
|
||||||
|
|
||||||
# TODO: figure out how to use `cause` instead
|
# TODO: figure out how to use `cause` instead
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#993
|
# source://minitest//lib/minitest.rb#1006
|
||||||
def error=(_arg0); end
|
def error=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1014
|
# source://minitest//lib/minitest.rb#1027
|
||||||
def message; end
|
def message; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1020
|
# source://minitest//lib/minitest.rb#1033
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1012
|
# source://minitest//lib/minitest.rb#1025
|
||||||
Minitest::UnexpectedError::BASE_RE = T.let(T.unsafe(nil), Regexp)
|
Minitest::UnexpectedError::BASE_RE = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#12
|
# source://minitest//lib/minitest.rb#12
|
||||||
Loading…
x
Reference in New Issue
Block a user