ruby-minitest 5.26.1-ok1 source package in openKylin
Changelog
ruby-minitest (5.26.1-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Wed, 03 Jun 2026 11:27:21 +0800
ruby-minitest (5.26.1-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Wed, 03 Jun 2026 11:27:21 +0800
| Series | Published | Component | Section | |
|---|---|---|---|---|
| Huanghe V3.0 | proposed | main | ruby |
| File | Size | SHA-256 Checksum |
|---|---|---|
| ruby-minitest_5.26.1.orig.tar.gz | 95.4 KiB | 1cdced39d0329abff0d121bd5667f3b3b8c8243c16d7bee2b94f3e35c1fdb683 |
| ruby-minitest_5.26.1-ok1.debian.tar.xz | 3.2 KiB | 4d035e2b8a69ebd3591b23f489d81ef6e854298f6fce50e7338e59f9a42b53f9 |
| ruby-minitest_5.26.1-ok1.dsc | 1.8 KiB | dbcedd6ee0dad8812ca49d0ca56545893182d934026503e0d92186bfc1b3ffbf |
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.