ruby-minitest 5.11.3-1 source package in Ubuntu

Changelog

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

  * New upstream version 5.11.3
  * Use salsa.debian.org in Vcs-* fields
  * Move debian/watch to gemwatch.debian.net
  * Bump debhelper compatibility level to 11
  * Bump Standards-Version to 4.2.0 (no changes needed)
  * Refresh disable-some-tests patch
  * Use https in copyright format

 -- Cédric Boutillier <email address hidden>  Thu, 16 Aug 2018 05:16:03 +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

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-minitest_5.11.3-1.dsc 1.7 KiB fbfc25351143926b4cc21a88ab9eb8cfdfd08bafb8d4adecbd93dd26f22d09e8
ruby-minitest_5.11.3.orig.tar.gz 72.9 KiB ae702b05325588a1941986786b3e4eb0df77dc837d5cad79eb3d54afc08d1c33
ruby-minitest_5.11.3-1.debian.tar.xz 5.7 KiB e16f5983505a964459f47d6a65aae8848ad646843f09c94467b1236c739835e0

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.