golang-check.v1 0.0+git20200902.038fdea-1 source package in Ubuntu

Changelog

golang-check.v1 (0.0+git20200902.038fdea-1) unstable; urgency=medium

  * New upstream version 0.0+git20200902.038fdea
  * debian/gbp.conf: Set debian-branch to debian/sid for DEP-14 conformance
  * debian/watch: Add rules to track HEAD on GitHub
  * Bump debhelper dependency to "Build-Depends: debhelper-compat (= 13)"
  * Bump Standards-Version to 4.5.0 (no change)
  * Add "Rules-Requires-Root: no" to debian/control
  * Update dependency on golang-github-kr-pretty-dev
    to (>= 0.2.1+git20200831.59b4212) which has the fix "diff: detect cycles
    in the values being compared" at https://github.com/kr/pretty/pull/64
    merged, and add debian/patches/02-unfork-kr-pretty.patch
    to avoid packaging the temporary github.com/niemeyer/pretty fork.
  * Drop transitional package golang-check.v1-dev (Closes: #939209)
  * Add debian/upstream/metadata with Bug-Database, Bug-Submit, Repository
    and Repository-Browse fields
  * Add myself to debian/copyright

 -- Anthony Fok <email address hidden>  Mon, 09 Nov 2020 13:39:50 -0700

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
golang
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe devel
Noble release universe devel
Mantic release universe devel
Lunar release universe devel
Jammy release universe devel

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-check.v1_0.0+git20200902.038fdea-1.dsc 2.5 KiB a4c67bc449b311f4ae5375955894380cf96b337e3d5926f6c0576a25b4385ad4
golang-check.v1_0.0+git20200902.038fdea.orig.tar.xz 27.3 KiB 166752108211137c5171961ebf076beb4d10d8ba317ccb416cdcb6dd41dfbc6c
golang-check.v1_0.0+git20200902.038fdea-1.debian.tar.xz 5.3 KiB ef59c6ea07d35713c35a919244a18fb013ec2e753745bbce5487aa59d5427154

No changes file available.

Binary packages built by this source

golang-gopkg-check.v1-dev: Rich testing extension for Go's testing package

 The Go language provides an internal testing library, named testing, which is
 relatively slim due to the fact that the standard library correctness by
 itself is verified using it. The check package, on the other hand, expects the
 standard library from Go to be working correctly, and builds on it to offer a
 richer testing framework for libraries and applications to use.
 .
 Package "gopkg.in/check.v1" includes features such as:
 .
    - Helpful error reporting to aid on figuring problems out
    - Richer test helpers: assertions which interrupt the test immediately,
      deep multi-type comparisons, string matching, etc
    - Suite-based grouping of tests
    - Fixtures: per suite and/or per test set up and tear down
    - Benchmarks integrated in the suite logic (with fixtures, etc)
    - Management of temporary directories
    - Panic-catching logic, with proper error reporting
    - Proper counting of successes, failures, panics, missed tests, skips, etc
    - Explicit test skipping
    - Support for expected failures
    - Verbosity flag which disables output caching (helpful to debug hanging
      tests, for instance)
    - Multi-line string reporting for more comprehensible failures
    - Inclusion of comments surrounding checks on failure reports
    - Fully tested (it manages to test itself reliably)