ruby-minitest 5.22.3-1 source package in Ubuntu

Changelog

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

  * New upstream version 5.22.3
  * Refresh patches

 -- Lucas Nussbaum <email address hidden>  Wed, 08 May 2024 21:39:25 +0200

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
Oracular release universe ruby

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-minitest_5.22.3-1.dsc 2.0 KiB e642140ac7b760041762cbc55bdb4c12f0bb1acf7a85e7eeb7ec7bf08886af1e
ruby-minitest_5.22.3.orig.tar.gz 92.7 KiB a5d64e91ddea904ce5e85c927e2a525112fa0c0eee5bb4a987e9cbfa258fb47d
ruby-minitest_5.22.3-1.debian.tar.xz 5.9 KiB c992ce41674960c7c8454408be0e659ac8f87ce447a490fa9e7648a2bd7cc84f

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.