Source: golang-github-maxatome-go-testdeep Maintainer: Debian Go Packaging Team Uploaders: Mathias Gibbens Section: golang Testsuite: autopkgtest-pkg-go Priority: optional Build-Depends: debhelper-compat (= 13), dh-golang, golang-any, golang-github-davecgh-go-spew-dev Standards-Version: 4.6.2 Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-maxatome-go-testdeep Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-maxatome-go-testdeep.git Homepage: https://github.com/maxatome/go-testdeep Rules-Requires-Root: no XS-Go-Import-Path: github.com/maxatome/go-testdeep Package: golang-github-maxatome-go-testdeep-dev Architecture: all Multi-Arch: foreign Depends: golang-github-davecgh-go-spew-dev, ${misc:Depends} Description: 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.