Merge pull request #16611 from Homebrew/dependabot/bundler/Library/Homebrew/minitest-5.22.1
build(deps-dev): bump minitest from 5.22.0 to 5.22.1 in /Library/Homebrew
This commit is contained in:
commit
6862958677
@ -26,7 +26,7 @@ GEM
|
|||||||
simpleidn (~> 0.2)
|
simpleidn (~> 0.2)
|
||||||
language_server-protocol (3.17.0.3)
|
language_server-protocol (3.17.0.3)
|
||||||
method_source (1.0.0)
|
method_source (1.0.0)
|
||||||
minitest (5.22.0)
|
minitest (5.22.1)
|
||||||
msgpack (1.7.2)
|
msgpack (1.7.2)
|
||||||
mustache (1.1.1)
|
mustache (1.1.1)
|
||||||
netrc (0.11.0)
|
netrc (0.11.0)
|
||||||
|
|||||||
@ -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#198
|
# source://minitest//lib/minitest.rb#199
|
||||||
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,7 +43,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#1147
|
# source://minitest//lib/minitest.rb#1148
|
||||||
def clock_time; end
|
def clock_time; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#177
|
# source://minitest//lib/minitest.rb#177
|
||||||
@ -55,7 +55,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#293
|
# source://minitest//lib/minitest.rb#294
|
||||||
def filter_backtrace(bt); end
|
def filter_backtrace(bt); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#19
|
# source://minitest//lib/minitest.rb#19
|
||||||
@ -76,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#211
|
# source://minitest//lib/minitest.rb#212
|
||||||
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
|
||||||
@ -104,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#1138
|
# source://minitest//lib/minitest.rb#1139
|
||||||
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 +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#639
|
# source://minitest//lib/minitest.rb#640
|
||||||
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#641
|
# source://minitest//lib/minitest.rb#642
|
||||||
def initialize; end
|
def initialize; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#676
|
# source://minitest//lib/minitest.rb#677
|
||||||
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#655
|
# source://minitest//lib/minitest.rb#656
|
||||||
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 +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#664
|
# source://minitest//lib/minitest.rb#665
|
||||||
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#670
|
# source://minitest//lib/minitest.rb#671
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# Starts reporting on the run.
|
# Starts reporting on the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#648
|
# source://minitest//lib/minitest.rb#649
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#680
|
# source://minitest//lib/minitest.rb#681
|
||||||
def synchronize(&block); end
|
def synchronize(&block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Represents run failures.
|
# Represents run failures.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#963
|
# source://minitest//lib/minitest.rb#964
|
||||||
class Minitest::Assertion < ::Exception
|
class Minitest::Assertion < ::Exception
|
||||||
# source://minitest//lib/minitest.rb#966
|
# source://minitest//lib/minitest.rb#967
|
||||||
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#973
|
# source://minitest//lib/minitest.rb#974
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#981
|
# source://minitest//lib/minitest.rb#982
|
||||||
def result_code; end
|
def result_code; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#985
|
# source://minitest//lib/minitest.rb#986
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#964
|
# source://minitest//lib/minitest.rb#965
|
||||||
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 +626,77 @@ Minitest::Assertions::UNDEFINED = T.let(T.unsafe(nil), Object)
|
|||||||
#
|
#
|
||||||
# See Minitest.backtrace_filter=.
|
# See Minitest.backtrace_filter=.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1109
|
# source://minitest//lib/minitest.rb#1110
|
||||||
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#1115
|
# source://minitest//lib/minitest.rb#1116
|
||||||
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#1123
|
# source://minitest//lib/minitest.rb#1124
|
||||||
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#1113
|
# source://minitest//lib/minitest.rb#1114
|
||||||
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#1113
|
# source://minitest//lib/minitest.rb#1114
|
||||||
def regexp=(_arg0); end
|
def regexp=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1111
|
# source://minitest//lib/minitest.rb#1112
|
||||||
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#914
|
# source://minitest//lib/minitest.rb#915
|
||||||
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#918
|
# source://minitest//lib/minitest.rb#919
|
||||||
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#930
|
# source://minitest//lib/minitest.rb#931
|
||||||
def <<(reporter); end
|
def <<(reporter); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#923
|
# source://minitest//lib/minitest.rb#924
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#934
|
# source://minitest//lib/minitest.rb#935
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#942
|
# source://minitest//lib/minitest.rb#943
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#949
|
# source://minitest//lib/minitest.rb#950
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#955
|
# source://minitest//lib/minitest.rb#956
|
||||||
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#916
|
# source://minitest//lib/minitest.rb#917
|
||||||
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#916
|
# source://minitest//lib/minitest.rb#917
|
||||||
def reporters=(_arg0); end
|
def reporters=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#938
|
# source://minitest//lib/minitest.rb#939
|
||||||
def start; end
|
def start; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -725,48 +725,48 @@ end
|
|||||||
# # ... lots of test methods ...
|
# # ... lots of test methods ...
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#1053
|
# source://minitest//lib/minitest.rb#1054
|
||||||
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#1058
|
# source://minitest//lib/minitest.rb#1059
|
||||||
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#1065
|
# source://minitest//lib/minitest.rb#1066
|
||||||
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#1075
|
# source://minitest//lib/minitest.rb#1076
|
||||||
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#1082
|
# source://minitest//lib/minitest.rb#1083
|
||||||
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#1089
|
# source://minitest//lib/minitest.rb#1090
|
||||||
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#1099
|
# source://minitest//lib/minitest.rb#1100
|
||||||
def windows?(platform = T.unsafe(nil)); end
|
def windows?(platform = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -829,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#711
|
|
||||||
class Minitest::ProgressReporter < ::Minitest::Reporter
|
|
||||||
# source://minitest//lib/minitest.rb#712
|
# source://minitest//lib/minitest.rb#712
|
||||||
|
class Minitest::ProgressReporter < ::Minitest::Reporter
|
||||||
|
# source://minitest//lib/minitest.rb#713
|
||||||
def prerecord(klass, name); end
|
def prerecord(klass, name); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#719
|
# source://minitest//lib/minitest.rb#720
|
||||||
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#533
|
# source://minitest//lib/minitest.rb#534
|
||||||
module Minitest::Reportable
|
module Minitest::Reportable
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#555
|
# source://minitest//lib/minitest.rb#556
|
||||||
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#576
|
# source://minitest//lib/minitest.rb#577
|
||||||
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#550
|
# source://minitest//lib/minitest.rb#551
|
||||||
def location; end
|
def location; end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -868,50 +868,50 @@ module Minitest::Reportable
|
|||||||
#
|
#
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#540
|
# source://minitest//lib/minitest.rb#541
|
||||||
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#562
|
# source://minitest//lib/minitest.rb#563
|
||||||
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#569
|
# source://minitest//lib/minitest.rb#570
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#544
|
# source://minitest//lib/minitest.rb#545
|
||||||
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#687
|
# source://minitest//lib/minitest.rb#688
|
||||||
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#696
|
# source://minitest//lib/minitest.rb#697
|
||||||
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#689
|
# source://minitest//lib/minitest.rb#690
|
||||||
def io; end
|
def io; end
|
||||||
|
|
||||||
# The IO used to report.
|
# The IO used to report.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#689
|
# source://minitest//lib/minitest.rb#690
|
||||||
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#694
|
# source://minitest//lib/minitest.rb#695
|
||||||
def options; end
|
def options; end
|
||||||
|
|
||||||
# Command-line options for this run.
|
# Command-line options for this run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#694
|
# source://minitest//lib/minitest.rb#695
|
||||||
def options=(_arg0); end
|
def options=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -921,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#588
|
# source://minitest//lib/minitest.rb#589
|
||||||
class Minitest::Result < ::Minitest::Runnable
|
class Minitest::Result < ::Minitest::Runnable
|
||||||
include ::Minitest::Reportable
|
include ::Minitest::Reportable
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#622
|
# source://minitest//lib/minitest.rb#623
|
||||||
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#597
|
# source://minitest//lib/minitest.rb#598
|
||||||
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#597
|
# source://minitest//lib/minitest.rb#598
|
||||||
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#602
|
# source://minitest//lib/minitest.rb#603
|
||||||
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#602
|
# source://minitest//lib/minitest.rb#603
|
||||||
def source_location=(_arg0); end
|
def source_location=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#626
|
# source://minitest//lib/minitest.rb#627
|
||||||
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#607
|
# source://minitest//lib/minitest.rb#608
|
||||||
def from(runnable); end
|
def from(runnable); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# re-open
|
# re-open
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#306
|
# source://minitest//lib/minitest.rb#307
|
||||||
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#464
|
# source://minitest//lib/minitest.rb#465
|
||||||
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#310
|
# source://minitest//lib/minitest.rb#311
|
||||||
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#310
|
# source://minitest//lib/minitest.rb#311
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#460
|
# source://minitest//lib/minitest.rb#461
|
||||||
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#315
|
# source://minitest//lib/minitest.rb#316
|
||||||
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#315
|
# source://minitest//lib/minitest.rb#316
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#446
|
# source://minitest//lib/minitest.rb#447
|
||||||
def marshal_dump; end
|
def marshal_dump; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#456
|
# source://minitest//lib/minitest.rb#457
|
||||||
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 +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#479
|
# source://minitest//lib/minitest.rb#480
|
||||||
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#486
|
# source://minitest//lib/minitest.rb#487
|
||||||
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#491
|
# source://minitest//lib/minitest.rb#492
|
||||||
def metadata?; end
|
def metadata?; end
|
||||||
|
|
||||||
# Name of the run.
|
# Name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#333
|
# source://minitest//lib/minitest.rb#334
|
||||||
def name; end
|
def name; end
|
||||||
|
|
||||||
# Set the name of the run.
|
# Set the name of the run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#340
|
# source://minitest//lib/minitest.rb#341
|
||||||
def name=(o); end
|
def name=(o); end
|
||||||
|
|
||||||
# Did this run pass?
|
# Did this run pass?
|
||||||
@ -1037,7 +1037,7 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#508
|
# source://minitest//lib/minitest.rb#509
|
||||||
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 +1046,14 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#517
|
# source://minitest//lib/minitest.rb#518
|
||||||
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#498
|
# source://minitest//lib/minitest.rb#499
|
||||||
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 +1061,42 @@ class Minitest::Runnable
|
|||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#524
|
# source://minitest//lib/minitest.rb#525
|
||||||
def skipped?; end
|
def skipped?; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#320
|
# source://minitest//lib/minitest.rb#321
|
||||||
def time; end
|
def time; end
|
||||||
|
|
||||||
# The time it took to run.
|
# The time it took to run.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#320
|
# source://minitest//lib/minitest.rb#321
|
||||||
def time=(_arg0); end
|
def time=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#322
|
# source://minitest//lib/minitest.rb#323
|
||||||
def time_it; end
|
def time_it; end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
# source://minitest//lib/minitest.rb#1157
|
# source://minitest//lib/minitest.rb#1158
|
||||||
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#347
|
# source://minitest//lib/minitest.rb#348
|
||||||
def methods_matching(re); end
|
def methods_matching(re); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#416
|
# source://minitest//lib/minitest.rb#417
|
||||||
def on_signal(name, action); end
|
def on_signal(name, action); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#351
|
# source://minitest//lib/minitest.rb#352
|
||||||
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#362
|
# source://minitest//lib/minitest.rb#363
|
||||||
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 +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#388
|
# source://minitest//lib/minitest.rb#389
|
||||||
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 +1112,33 @@ class Minitest::Runnable
|
|||||||
#
|
#
|
||||||
# @raise [NotImplementedError]
|
# @raise [NotImplementedError]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#433
|
# source://minitest//lib/minitest.rb#434
|
||||||
def runnable_methods; end
|
def runnable_methods; end
|
||||||
|
|
||||||
# Returns all subclasses of Runnable.
|
# Returns all subclasses of Runnable.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#440
|
# source://minitest//lib/minitest.rb#441
|
||||||
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#397
|
# source://minitest//lib/minitest.rb#398
|
||||||
def test_order; end
|
def test_order; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#401
|
# source://minitest//lib/minitest.rb#402
|
||||||
def with_info_handler(reporter, &block); end
|
def with_info_handler(reporter, &block); end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#414
|
# source://minitest//lib/minitest.rb#415
|
||||||
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#993
|
|
||||||
class Minitest::Skip < ::Minitest::Assertion
|
|
||||||
# source://minitest//lib/minitest.rb#994
|
# source://minitest//lib/minitest.rb#994
|
||||||
|
class Minitest::Skip < ::Minitest::Assertion
|
||||||
|
# source://minitest//lib/minitest.rb#995
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1162,113 +1162,113 @@ end
|
|||||||
# end
|
# end
|
||||||
# end
|
# end
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#749
|
# source://minitest//lib/minitest.rb#750
|
||||||
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#791
|
# source://minitest//lib/minitest.rb#792
|
||||||
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#751
|
# source://minitest//lib/minitest.rb#752
|
||||||
def assertions; end
|
def assertions; end
|
||||||
|
|
||||||
# Total number of assertions.
|
# Total number of assertions.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#751
|
# source://minitest//lib/minitest.rb#752
|
||||||
def assertions=(_arg0); end
|
def assertions=(_arg0); end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#756
|
# source://minitest//lib/minitest.rb#757
|
||||||
def count; end
|
def count; end
|
||||||
|
|
||||||
# Total number of test cases.
|
# Total number of test cases.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#756
|
# source://minitest//lib/minitest.rb#757
|
||||||
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#784
|
# source://minitest//lib/minitest.rb#785
|
||||||
def errors; end
|
def errors; end
|
||||||
|
|
||||||
# Total number of tests that erred.
|
# Total number of tests that erred.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#784
|
# source://minitest//lib/minitest.rb#785
|
||||||
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#779
|
# source://minitest//lib/minitest.rb#780
|
||||||
def failures; end
|
def failures; end
|
||||||
|
|
||||||
# Total number of tests that failed.
|
# Total number of tests that failed.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#779
|
# source://minitest//lib/minitest.rb#780
|
||||||
def failures=(_arg0); end
|
def failures=(_arg0); end
|
||||||
|
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#804
|
# source://minitest//lib/minitest.rb#805
|
||||||
def passed?; end
|
def passed?; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#812
|
# source://minitest//lib/minitest.rb#813
|
||||||
def record(result); end
|
def record(result); end
|
||||||
|
|
||||||
# Report on the tracked statistics.
|
# Report on the tracked statistics.
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#822
|
# source://minitest//lib/minitest.rb#823
|
||||||
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#761
|
# source://minitest//lib/minitest.rb#762
|
||||||
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#761
|
# source://minitest//lib/minitest.rb#762
|
||||||
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#789
|
# source://minitest//lib/minitest.rb#790
|
||||||
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#789
|
# source://minitest//lib/minitest.rb#790
|
||||||
def skips=(_arg0); end
|
def skips=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#808
|
# source://minitest//lib/minitest.rb#809
|
||||||
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#768
|
# source://minitest//lib/minitest.rb#769
|
||||||
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#768
|
# source://minitest//lib/minitest.rb#769
|
||||||
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#774
|
# source://minitest//lib/minitest.rb#775
|
||||||
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#774
|
# source://minitest//lib/minitest.rb#775
|
||||||
def total_time=(_arg0); end
|
def total_time=(_arg0); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1280,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#843
|
# source://minitest//lib/minitest.rb#844
|
||||||
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
class Minitest::SummaryReporter < ::Minitest::StatisticsReporter
|
||||||
# source://minitest//lib/minitest.rb#877
|
# source://minitest//lib/minitest.rb#878
|
||||||
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#845
|
# source://minitest//lib/minitest.rb#846
|
||||||
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#845
|
# source://minitest//lib/minitest.rb#846
|
||||||
def old_sync=(_arg0); end
|
def old_sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#860
|
# source://minitest//lib/minitest.rb#861
|
||||||
def report; end
|
def report; end
|
||||||
|
|
||||||
# :startdoc:
|
# :startdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#848
|
# source://minitest//lib/minitest.rb#849
|
||||||
def start; end
|
def start; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#872
|
# source://minitest//lib/minitest.rb#873
|
||||||
def statistics; end
|
def statistics; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#897
|
# source://minitest//lib/minitest.rb#898
|
||||||
def summary; end
|
def summary; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#844
|
# source://minitest//lib/minitest.rb#845
|
||||||
def sync; end
|
def sync; end
|
||||||
|
|
||||||
# :stopdoc:
|
# :stopdoc:
|
||||||
#
|
#
|
||||||
# source://minitest//lib/minitest.rb#844
|
# source://minitest//lib/minitest.rb#845
|
||||||
def sync=(_arg0); end
|
def sync=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#893
|
# source://minitest//lib/minitest.rb#894
|
||||||
def to_s; end
|
def to_s; end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1499,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#1002
|
# source://minitest//lib/minitest.rb#1003
|
||||||
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#1008
|
# source://minitest//lib/minitest.rb#1009
|
||||||
def initialize(error); end
|
def initialize(error); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1021
|
# source://minitest//lib/minitest.rb#1022
|
||||||
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#1006
|
# source://minitest//lib/minitest.rb#1007
|
||||||
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#1006
|
# source://minitest//lib/minitest.rb#1007
|
||||||
def error=(_arg0); end
|
def error=(_arg0); end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1027
|
# source://minitest//lib/minitest.rb#1028
|
||||||
def message; end
|
def message; end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1033
|
# source://minitest//lib/minitest.rb#1034
|
||||||
def result_label; end
|
def result_label; end
|
||||||
end
|
end
|
||||||
|
|
||||||
# source://minitest//lib/minitest.rb#1025
|
# source://minitest//lib/minitest.rb#1026
|
||||||
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
|
||||||
@ -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/json_schemer-2.1.1/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/json_schemer-2.1.1/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.0.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/method_source-1.0.0/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.22.0/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.22.1/lib")
|
||||||
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/mustache-1.1.1/lib")
|
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/mustache-1.1.1/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")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user