ruby-minitest 2.6.1-1 source package in Ubuntu

Changelog

ruby-minitest (2.6.1-1) unstable; urgency=low

  * New upstream version.
  * Switch to my @d.o email address.
  * Standards-Version -> 3.9.2. No changes needed.
  * Switch test runner.
  * Fix debian/copyright. Thanks lintian.
  * disable-some-tests: Refresh patch.
  * Add patch: disable-require-rubygems.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Thu,  20 Oct 2011 06:28:06 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
ruby
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
ruby-minitest_2.6.1.orig.tar.gz 37.5 KiB 174598e845f064902510cb476e284ddab9c2fc4e79e8a30ea1fe432089132d73
ruby-minitest_2.6.1-1.debian.tar.gz 3.4 KiB 7b26ce8b8253c7fcf235b95bf479718703ceba490970c83a0d98e2b04df479d4
ruby-minitest_2.6.1-1.dsc 2.0 KiB 692b8edf24bae1ab5af572d866477a54ed53f47de52cb6279d3aff90fa7140ca

Available diffs

View changes file

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.