ruby-minitest 5.15.0-1 source package in Ubuntu

Changelog

ruby-minitest (5.15.0-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.
  * Update patches:
    - Refresh d/p/disable-require-rubygems
    - Remove d/p/disable-some-tests

 -- Lucas Kanashiro <email address hidden>  Wed, 09 Feb 2022 16:43:14 -0300

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-minitest_5.15.0-1.dsc 2.1 KiB 24a5edda7d0f21d0211220c67822e3951ff4660fa4eb059ebc09bce6f75b68b4
ruby-minitest_5.15.0.orig.tar.gz 80.5 KiB 1bbab618334e7afd8d8c31f3699e36ce807a5ec6c1962ee8ae364a870f8b00b8
ruby-minitest_5.15.0-1.debian.tar.xz 5.4 KiB 68fce30cff2c77e7b015caaedd72556055201e42a3ae41499495e9d7fb40f033

Available diffs

No changes file available.

Binary packages built by this source

ruby-minitest: Ruby test tools supporting TDD, BDD, mocking, and benchmarking

 minitest provides a complete suite of testing facilities supporting
 TDD, BDD, mocking, and benchmarking.
 .
 minitest/unit is a small and incredibly fast unit testing framework.
 It provides a rich set of assertions to make your tests clean and
 readable.
 .
 minitest/spec is a functionally complete spec engine. It hooks onto
 minitest/unit and seamlessly bridges test assertions over to spec
 expectations.
 .
 minitest/benchmark is an awesome way to assert the performance of your
 algorithms in a repeatable manner. Now you can assert that your newb
 co-worker doesn't replace your linear algorithm with an exponential
 one!
 .
 minitest/mock by Steven Baker, is a beautifully tiny mock object
 framework.
 .
 minitest/pride shows pride in testing and adds coloring to your test
 output.
 .
 minitest/unit is meant to have a clean implementation for language
 implementors that need a minimal set of methods to bootstrap a working
 test suite. For example, there is no magic involved for test-case
 discovery.