ruby-minitest 5.22.2-1 source package in Ubuntu

Changelog

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

  * New upstream version 5.22.2

 -- Lucas Nussbaum <email address hidden>  Sun, 03 Mar 2024 16:38:52 +0100

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

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-minitest_5.22.2-1.dsc 2.0 KiB 8dc621e0eaa71926b6f060b941b4946ad06eb28a522aa52f5c3a789010790c7a
ruby-minitest_5.22.2.orig.tar.gz 92.6 KiB c01b5f2e7444fe1c668563e29b41e1f3020d0296e330c42c3e4530eb19f2c021
ruby-minitest_5.22.2-1.debian.tar.xz 5.7 KiB db7822a06a4d2806271ac5722c8036f4f86da1073e5ecb2ca20a136f2ea43f84

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.