PATH:
opt
/
alt
/
ruby34
/
share
/
gems
/
gems
/
rbs-3.8.0
/
stdlib
/
minitest
/
0
/
minitest
# <!-- rdoc-file=lib/minitest.rb --> # Provides a simple set of guards that you can use in your tests to skip # execution if it is not applicable. These methods are mixed into Test as both # instance and class methods so you can use them inside or outside of the test # methods. # # def test_something_for_mri # skip "bug 1234" if jruby? # # ... # end # # if windows? then # # ... lots of test methods ... # end # module Minitest::Guard # <!-- # rdoc-file=lib/minitest.rb # - jruby?(platform = RUBY_PLATFORM) # --> # Is this running on jruby? # def jruby?: (?untyped platform) -> untyped # <!-- # rdoc-file=lib/minitest.rb # - maglev?(platform = defined?(RUBY_ENGINE) && RUBY_ENGINE) # --> # Is this running on maglev? # def maglev?: (?untyped platform) -> untyped # <!-- # rdoc-file=lib/minitest.rb # - mri?(platform = RUBY_DESCRIPTION) # --> # Is this running on mri? # def mri?: (?untyped platform) -> untyped # <!-- # rdoc-file=lib/minitest.rb # - osx?(platform = RUBY_PLATFORM) # --> # Is this running on macOS? # def osx?: (?untyped platform) -> untyped # <!-- # rdoc-file=lib/minitest.rb # - rubinius?(platform = defined?(RUBY_ENGINE) && RUBY_ENGINE) # --> # Is this running on rubinius? # def rubinius?: (?untyped platform) -> untyped # <!-- # rdoc-file=lib/minitest.rb # - windows?(platform = RUBY_PLATFORM) # --> # Is this running on windows? # def windows?: (?untyped platform) -> untyped end
[-] error_on_warning.rbs
[edit]
[-] unexpected_warning.rbs
[edit]
[-] summary_reporter.rbs
[edit]
[-] test.rbs
[edit]
[-] pride_lol.rbs
[edit]
[-] unit.rbs
[edit]
[-] spec.rbs
[edit]
[+]
unit
[-] result.rbs
[edit]
[-] reporter.rbs
[edit]
[-] skip.rbs
[edit]
[-] mock.rbs
[edit]
[-] benchmark.rbs
[edit]
[-] assertion.rbs
[edit]
[+]
parallel
[-] composite_reporter.rbs
[edit]
[-] progress_reporter.rbs
[edit]
[-] abstract_reporter.rbs
[edit]
[-] backtrace_filter.rbs
[edit]
[-] runnable.rbs
[edit]
[-] bench_spec.rbs
[edit]
[+]
spec
[-] parallel.rbs
[edit]
[-] compress.rbs
[edit]
[+]
..
[-] unexpected_error.rbs
[edit]
[-] pride_io.rbs
[edit]
[+]
test
[-] expectation.rbs
[edit]
[-] statistics_reporter.rbs
[edit]
[-] assertions.rbs
[edit]
[-] guard.rbs
[edit]
[-] expectations.rbs
[edit]
[-] reportable.rbs
[edit]