Source: golang-github-thediveo-success Section: golang Maintainer: Debian Go Packaging Team Uploaders: Simon Josefsson , Build-Depends: debhelper-compat (= 13), dh-sequence-golang, golang-any, golang-github-onsi-ginkgo-v2-dev, golang-gomega-dev, Testsuite: autopkgtest-pkg-go Standards-Version: 4.7.3 Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-thediveo-success Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-thediveo-success.git Homepage: https://github.com/thediveo/success XS-Go-Import-Path: github.com/thediveo/success Package: golang-github-thediveo-success-dev Architecture: all Multi-Arch: foreign Depends: golang-github-onsi-ginkgo-v2-dev, golang-gomega-dev, ${misc:Depends}, Description: self check library for wrapping success (Go library) This tiny Go module improves your testing feng shui tremendiously by shimming in Gomega error detection whenever trying to be Successful(). . Before . sekret, err := Foo(42) Expect(err).NotTo(HaveOccured()) . After . // You might want to dot-import for convenience. import . "github.com/thediveo/success" . sekret := Successful(Foo(42)) . // analogous... sekret, moresekret := Successful2R(Bar(12345)) sekret, moresekret, nosekretanymore := Successful3R(Baz()) . This package contains the Go development library.