Merge pull request #17321 from Homebrew/dependabot/bundler/Library/Homebrew/minitest-5.23.0
This commit is contained in:
commit
2ded26d50a
@ -26,7 +26,7 @@ GEM
|
|||||||
rexml
|
rexml
|
||||||
language_server-protocol (3.17.0.3)
|
language_server-protocol (3.17.0.3)
|
||||||
method_source (1.1.0)
|
method_source (1.1.0)
|
||||||
minitest (5.22.3)
|
minitest (5.23.0)
|
||||||
msgpack (1.7.2)
|
msgpack (1.7.2)
|
||||||
netrc (0.11.0)
|
netrc (0.11.0)
|
||||||
parallel (1.24.0)
|
parallel (1.24.0)
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
# This is an autogenerated file for types exported from the `minitest` gem.
|
# This is an autogenerated file for types exported from the `minitest` gem.
|
||||||
# Please instead update this file by running `bin/tapioca gem minitest`.
|
# Please instead update this file by running `bin/tapioca gem minitest`.
|
||||||
|
|
||||||
|
|
||||||
# :include: README.rdoc
|
# :include: README.rdoc
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest/parallel.rb#1
|
# source://minitest//lib/minitest/parallel.rb#1
|
||||||
@ -43,7 +44,7 @@ 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#1146
|
# source://minitest//lib/minitest.rb#1178
|
||||||
def clock_time; end
|
def clock_time; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#177
|
# source://minitest//lib/minitest.rb#177
|
||||||
@ -55,7 +56,7 @@ module Minitest
|
|||||||
# 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#292
|
# source://minitest//lib/minitest.rb#306
|
||||||
def filter_backtrace(bt); end
|
def filter_backtrace(bt); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
@ -104,7 +105,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#1137
|
# source://minitest//lib/minitest.rb#1169
|
||||||
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
|
||||||
@ -118,24 +119,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#638
|
# source://minitest//lib/minitest.rb#652
|
||||||
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#640
|
# source://minitest//lib/minitest.rb#654
|
||||||
def initialize; end
|
def initialize; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#675
|
# source://minitest//lib/minitest.rb#689
|
||||||
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#654
|
# source://minitest//lib/minitest.rb#668
|
||||||
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
|
||||||
@ -143,43 +144,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#663
|
# source://minitest//lib/minitest.rb#677
|
||||||
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#669
|
# source://minitest//lib/minitest.rb#683
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# Starts reporting on the run.
|
# Starts reporting on the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#647
|
# source://minitest//lib/minitest.rb#661
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#679
|
# source://minitest//lib/minitest.rb#693
|
||||||
def synchronize(&block); end
|
def synchronize(&block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Represents run failures.
|
# Represents run failures.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#962
|
# source://minitest//lib/minitest.rb#985
|
||||||
class Minitest::Assertion < ::Exception
|
class Minitest::Assertion < ::Exception
|
||||||
# source://minitest//lib/minitest.rb#965
|
# source://minitest//lib/minitest.rb#988
|
||||||
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#972
|
# source://minitest//lib/minitest.rb#995
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#980
|
# source://minitest//lib/minitest.rb#1003
|
||||||
def result_code; end
|
def result_code; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#984
|
# source://minitest//lib/minitest.rb#1007
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#963
|
# source://minitest//lib/minitest.rb#986
|
||||||
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
|
||||||
@ -626,77 +627,77 @@ Minitest::Assertions::UNDEFINED = T.let(T.unsafe(nil), Object)
|
|||||||
#
|
#
|
||||||
# See Minitest.backtrace_filter=.
|
# See Minitest.backtrace_filter=.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1108
|
# source://minitest//lib/minitest.rb#1140
|
||||||
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#1114
|
# source://minitest//lib/minitest.rb#1146
|
||||||
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#1122
|
# source://minitest//lib/minitest.rb#1154
|
||||||
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#1112
|
# source://minitest//lib/minitest.rb#1144
|
||||||
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#1112
|
# source://minitest//lib/minitest.rb#1144
|
||||||
def regexp=(_arg0); end
|
def regexp=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1110
|
# source://minitest//lib/minitest.rb#1142
|
||||||
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#913
|
# source://minitest//lib/minitest.rb#936
|
||||||
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#917
|
# source://minitest//lib/minitest.rb#940
|
||||||
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#929
|
# source://minitest//lib/minitest.rb#952
|
||||||
def <<(reporter); end
|
def <<(reporter); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#922
|
# source://minitest//lib/minitest.rb#945
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#933
|
# source://minitest//lib/minitest.rb#956
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#941
|
# source://minitest//lib/minitest.rb#964
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#948
|
# source://minitest//lib/minitest.rb#971
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#954
|
# source://minitest//lib/minitest.rb#977
|
||||||
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#915
|
# source://minitest//lib/minitest.rb#938
|
||||||
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#915
|
# source://minitest//lib/minitest.rb#938
|
||||||
def reporters=(_arg0); end
|
def reporters=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#937
|
# source://minitest//lib/minitest.rb#960
|
||||||
def start; end
|
def start; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -725,48 +726,48 @@ end
|
|||||||
# # ... lots of test methods ...
|
# # ... lots of test methods ...
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1052
|
# source://minitest//lib/minitest.rb#1084
|
||||||
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#1057
|
# source://minitest//lib/minitest.rb#1089
|
||||||
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#1064
|
# source://minitest//lib/minitest.rb#1096
|
||||||
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#1074
|
# source://minitest//lib/minitest.rb#1106
|
||||||
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#1081
|
# source://minitest//lib/minitest.rb#1113
|
||||||
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#1088
|
# source://minitest//lib/minitest.rb#1120
|
||||||
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#1098
|
# source://minitest//lib/minitest.rb#1130
|
||||||
def windows?(platform = T.unsafe(nil)); end
|
def windows?(platform = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -829,36 +830,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#710
|
# source://minitest//lib/minitest.rb#724
|
||||||
class Minitest::ProgressReporter < ::Minitest::Reporter
|
class Minitest::ProgressReporter < ::Minitest::Reporter
|
||||||
# source://minitest//lib/minitest.rb#711
|
# source://minitest//lib/minitest.rb#725
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#718
|
# source://minitest//lib/minitest.rb#732
|
||||||
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#532
|
# source://minitest//lib/minitest.rb#546
|
||||||
module Minitest::Reportable
|
module Minitest::Reportable
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#554
|
# source://minitest//lib/minitest.rb#568
|
||||||
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#575
|
# source://minitest//lib/minitest.rb#589
|
||||||
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#549
|
# source://minitest//lib/minitest.rb#563
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -868,50 +869,50 @@ module Minitest::Reportable
|
|||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#539
|
# source://minitest//lib/minitest.rb#553
|
||||||
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#561
|
# source://minitest//lib/minitest.rb#575
|
||||||
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#568
|
# source://minitest//lib/minitest.rb#582
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#543
|
# source://minitest//lib/minitest.rb#557
|
||||||
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#686
|
# source://minitest//lib/minitest.rb#700
|
||||||
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#695
|
# source://minitest//lib/minitest.rb#709
|
||||||
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#688
|
# source://minitest//lib/minitest.rb#702
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# The IO used to report.
|
# The IO used to report.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#688
|
# source://minitest//lib/minitest.rb#702
|
||||||
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#693
|
# source://minitest//lib/minitest.rb#707
|
||||||
def options; end
|
def options; end
|
||||||
|
|
||||||
# Command-line options for this run.
|
# Command-line options for this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#693
|
# source://minitest//lib/minitest.rb#707
|
||||||
def options=(_arg0); end
|
def options=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -921,80 +922,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#587
|
# source://minitest//lib/minitest.rb#601
|
||||||
class Minitest::Result < ::Minitest::Runnable
|
class Minitest::Result < ::Minitest::Runnable
|
||||||
include ::Minitest::Reportable
|
include ::Minitest::Reportable
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#621
|
# source://minitest//lib/minitest.rb#635
|
||||||
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#596
|
# source://minitest//lib/minitest.rb#610
|
||||||
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#596
|
# source://minitest//lib/minitest.rb#610
|
||||||
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#601
|
# source://minitest//lib/minitest.rb#615
|
||||||
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#601
|
# source://minitest//lib/minitest.rb#615
|
||||||
def source_location=(_arg0); end
|
def source_location=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#625
|
# source://minitest//lib/minitest.rb#639
|
||||||
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#606
|
# source://minitest//lib/minitest.rb#620
|
||||||
def from(runnable); end
|
def from(runnable); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# re-open
|
# re-open
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#305
|
# source://minitest//lib/minitest.rb#319
|
||||||
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#463
|
# source://minitest//lib/minitest.rb#477
|
||||||
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#309
|
# source://minitest//lib/minitest.rb#323
|
||||||
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#309
|
# source://minitest//lib/minitest.rb#323
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#459
|
# source://minitest//lib/minitest.rb#473
|
||||||
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#314
|
# source://minitest//lib/minitest.rb#328
|
||||||
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#314
|
# source://minitest//lib/minitest.rb#328
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#445
|
# source://minitest//lib/minitest.rb#459
|
||||||
def marshal_dump; end
|
def marshal_dump; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#455
|
# source://minitest//lib/minitest.rb#469
|
||||||
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.
|
||||||
@ -1004,29 +1005,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#478
|
# source://minitest//lib/minitest.rb#492
|
||||||
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#485
|
# source://minitest//lib/minitest.rb#499
|
||||||
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#490
|
# source://minitest//lib/minitest.rb#504
|
||||||
def metadata?; end
|
def metadata?; end
|
||||||
|
|
||||||
# Name of the run.
|
# Name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#332
|
# source://minitest//lib/minitest.rb#346
|
||||||
def name; end
|
def name; end
|
||||||
|
|
||||||
# Set the name of the run.
|
# Set the name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#339
|
# source://minitest//lib/minitest.rb#353
|
||||||
def name=(o); end
|
def name=(o); end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -1037,7 +1038,7 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#507
|
# source://minitest//lib/minitest.rb#521
|
||||||
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
|
||||||
@ -1046,14 +1047,14 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#516
|
# source://minitest//lib/minitest.rb#530
|
||||||
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#497
|
# source://minitest//lib/minitest.rb#511
|
||||||
def run; end
|
def run; end
|
||||||
|
|
||||||
# Was this run skipped? See #passed? for more information.
|
# Was this run skipped? See #passed? for more information.
|
||||||
@ -1061,42 +1062,42 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#523
|
# source://minitest//lib/minitest.rb#537
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#319
|
# source://minitest//lib/minitest.rb#333
|
||||||
def time; end
|
def time; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#319
|
# source://minitest//lib/minitest.rb#333
|
||||||
def time=(_arg0); end
|
def time=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#321
|
# source://minitest//lib/minitest.rb#335
|
||||||
def time_it; end
|
def time_it; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# source://minitest//lib/minitest.rb#1156
|
# source://minitest//lib/minitest.rb#1188
|
||||||
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#346
|
# source://minitest//lib/minitest.rb#360
|
||||||
def methods_matching(re); end
|
def methods_matching(re); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#415
|
# source://minitest//lib/minitest.rb#429
|
||||||
def on_signal(name, action); end
|
def on_signal(name, action); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#350
|
# source://minitest//lib/minitest.rb#364
|
||||||
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#361
|
# source://minitest//lib/minitest.rb#375
|
||||||
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.
|
||||||
@ -1104,7 +1105,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#387
|
# source://minitest//lib/minitest.rb#401
|
||||||
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
|
||||||
@ -1112,33 +1113,33 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#432
|
# source://minitest//lib/minitest.rb#446
|
||||||
def runnable_methods; end
|
def runnable_methods; end
|
||||||
|
|
||||||
# Returns all subclasses of Runnable.
|
# Returns all subclasses of Runnable.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#439
|
# source://minitest//lib/minitest.rb#453
|
||||||
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#396
|
# source://minitest//lib/minitest.rb#410
|
||||||
def test_order; end
|
def test_order; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#400
|
# source://minitest//lib/minitest.rb#414
|
||||||
def with_info_handler(reporter, &block); end
|
def with_info_handler(reporter, &block); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#413
|
# source://minitest//lib/minitest.rb#427
|
||||||
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#992
|
# source://minitest//lib/minitest.rb#1015
|
||||||
class Minitest::Skip < ::Minitest::Assertion
|
class Minitest::Skip < ::Minitest::Assertion
|
||||||
# source://minitest//lib/minitest.rb#993
|
# source://minitest//lib/minitest.rb#1016
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1162,114 +1163,124 @@ end
|
|||||||
# end
|
# end
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#748
|
# source://minitest//lib/minitest.rb#762
|
||||||
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#790
|
# source://minitest//lib/minitest.rb#809
|
||||||
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#750
|
# source://minitest//lib/minitest.rb#764
|
||||||
def assertions; end
|
def assertions; end
|
||||||
|
|
||||||
# Total number of assertions.
|
# Total number of assertions.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#750
|
# source://minitest//lib/minitest.rb#764
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#755
|
# source://minitest//lib/minitest.rb#769
|
||||||
def count; end
|
def count; end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#755
|
# source://minitest//lib/minitest.rb#769
|
||||||
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#783
|
# source://minitest//lib/minitest.rb#797
|
||||||
def errors; end
|
def errors; end
|
||||||
|
|
||||||
# Total number of tests that erred.
|
# Total number of tests that erred.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#783
|
# source://minitest//lib/minitest.rb#797
|
||||||
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#778
|
# source://minitest//lib/minitest.rb#792
|
||||||
def failures; end
|
def failures; end
|
||||||
|
|
||||||
# Total number of tests that failed.
|
# Total number of tests that failed.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#778
|
# source://minitest//lib/minitest.rb#792
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#803
|
# source://minitest//lib/minitest.rb#823
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#811
|
# source://minitest//lib/minitest.rb#831
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# Report on the tracked statistics.
|
# Report on the tracked statistics.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#821
|
# source://minitest//lib/minitest.rb#841
|
||||||
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#760
|
# source://minitest//lib/minitest.rb#774
|
||||||
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#760
|
# source://minitest//lib/minitest.rb#774
|
||||||
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#788
|
# source://minitest//lib/minitest.rb#807
|
||||||
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#788
|
# source://minitest//lib/minitest.rb#807
|
||||||
def skips=(_arg0); end
|
def skips=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#807
|
# source://minitest//lib/minitest.rb#827
|
||||||
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#767
|
# source://minitest//lib/minitest.rb#781
|
||||||
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#767
|
# source://minitest//lib/minitest.rb#781
|
||||||
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#773
|
# source://minitest//lib/minitest.rb#787
|
||||||
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#773
|
# source://minitest//lib/minitest.rb#787
|
||||||
def total_time=(_arg0); end
|
def total_time=(_arg0); end
|
||||||
|
|
||||||
|
# Total number of tests that warned.
|
||||||
|
#
|
||||||
|
# source://minitest//lib/minitest.rb#802
|
||||||
|
def warnings; end
|
||||||
|
|
||||||
|
# Total number of tests that warned.
|
||||||
|
#
|
||||||
|
# source://minitest//lib/minitest.rb#802
|
||||||
|
def warnings=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# A reporter that prints the header, summary, and failure details at
|
# A reporter that prints the header, summary, and failure details at
|
||||||
@ -1280,48 +1291,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#842
|
# source://minitest//lib/minitest.rb#863
|
||||||
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
||||||
# source://minitest//lib/minitest.rb#876
|
# source://minitest//lib/minitest.rb#897
|
||||||
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#844
|
# source://minitest//lib/minitest.rb#865
|
||||||
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#844
|
# source://minitest//lib/minitest.rb#865
|
||||||
def old_sync=(_arg0); end
|
def old_sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#859
|
# source://minitest//lib/minitest.rb#880
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# :startdoc:
|
# :startdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#847
|
# source://minitest//lib/minitest.rb#868
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#871
|
# source://minitest//lib/minitest.rb#892
|
||||||
def statistics; end
|
def statistics; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#896
|
# source://minitest//lib/minitest.rb#917
|
||||||
def summary; end
|
def summary; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#843
|
# source://minitest//lib/minitest.rb#864
|
||||||
def sync; end
|
def sync; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#843
|
# source://minitest//lib/minitest.rb#864
|
||||||
def sync=(_arg0); end
|
def sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#892
|
# source://minitest//lib/minitest.rb#913
|
||||||
def to_s; end
|
def to_s; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1500,37 +1511,45 @@ 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#1001
|
# source://minitest//lib/minitest.rb#1024
|
||||||
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#1007
|
# source://minitest//lib/minitest.rb#1030
|
||||||
def initialize(error); end
|
def initialize(error); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1020
|
# source://minitest//lib/minitest.rb#1043
|
||||||
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#1005
|
# source://minitest//lib/minitest.rb#1028
|
||||||
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#1005
|
# source://minitest//lib/minitest.rb#1028
|
||||||
def error=(_arg0); end
|
def error=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1026
|
# source://minitest//lib/minitest.rb#1049
|
||||||
def message; end
|
def message; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1032
|
# source://minitest//lib/minitest.rb#1055
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1024
|
# source://minitest//lib/minitest.rb#1047
|
||||||
Minitest::UnexpectedError::BASE_RE = T.let(T.unsafe(nil), Regexp)
|
Minitest::UnexpectedError::BASE_RE = T.let(T.unsafe(nil), Regexp)
|
||||||
|
|
||||||
|
# Assertion raised on warning when running in -Werror mode.
|
||||||
|
#
|
||||||
|
# source://minitest//lib/minitest.rb#1063
|
||||||
|
class Minitest::UnexpectedWarning < ::Minitest::Assertion
|
||||||
|
# source://minitest//lib/minitest.rb#1064
|
||||||
|
def result_label; end
|
||||||
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#12
|
# source://minitest//lib/minitest.rb#12
|
||||||
Minitest::VERSION = T.let(T.unsafe(nil), String)
|
Minitest::VERSION = T.let(T.unsafe(nil), String)
|
||||||
@ -57,7 +57,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
|
|||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/kramdown-2.4.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/kramdown-2.4.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/language_server-protocol-3.17.0.3/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/language_server-protocol-3.17.0.3/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/method_source-1.1.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/method_source-1.1.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.22.3/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.23.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/netrc-0.11.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/netrc-0.11.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel-1.24.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel-1.24.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel_tests-4.7.1/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/parallel_tests-4.7.1/lib")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user