golang-github-maxatome-go-testdeep 1.14.0-1 source package in Ubuntu
Changelog
golang-github-maxatome-go-testdeep (1.14.0-1) unstable; urgency=medium * New upstream release - Drop patch for skipping test -- Mathias Gibbens <email address hidden> Wed, 27 Dec 2023 23:43:21 +0000
Upload details
- Uploaded by:
- Debian Go Packaging Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Go Packaging Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Plucky | release | universe | misc | |
Oracular | release | universe | misc | |
Noble | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
golang-github-maxatome-go-testdeep_1.14.0-1.dsc | 2.3 KiB | 708baade6ba810e9c234df297bb3cc228d087310fd03d5f904205fca3fd80d19 |
golang-github-maxatome-go-testdeep_1.14.0.orig.tar.gz | 315.6 KiB | d0cb0a2f4eb9b9be24d04229556accdde2b98f964ddfa1eb652ec6a3dd702ed1 |
golang-github-maxatome-go-testdeep_1.14.0-1.debian.tar.xz | 2.8 KiB | c2fab3b5a3a98abf94f32a20c463b3721c46f8a3b6118ae6d7d7f2acdf5662d9 |
Available diffs
- diff from 1.13.0-1 to 1.14.0-1 (16.3 KiB)
No changes file available.
Binary packages built by this source
- golang-github-maxatome-go-testdeep-dev: Extremely flexible golang deep comparison
go-testdeep is historically a go rewrite and adaptation of wonderful
Test::Deep perl.
.
In golang, comparing data structure is usually done using
reflect.DeepEqual or using a package that uses this function behind
the scene.
.
This function works very well, but it is not flexible. Both compared
structures must match exactly and when a difference is returned, it is
up to the caller to display it. Not easy when comparing big data
structures.
.
The purpose of go-testdeep, via the td package and its helpers, is to
do its best to introduce this missing flexibility using "operators",
when the expected value (or one of its component) cannot be matched
exactly, mixed with some useful comparison functions.