golang-check.v1 0.0+git20150729.11d3bc7-2 source package in Ubuntu

Changelog

golang-check.v1 (0.0+git20150729.11d3bc7-2) unstable; urgency=medium

  * debian/patches/01-Skip_flaky_tests.patch: Avoid running flaky tests.
    Closes: #796806.

 -- Martín Ferrari <email address hidden>  Thu, 03 Sep 2015 14:06:46 +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 Pocket Published Component Section
Xenial release main devel

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-check.v1_0.0+git20150729.11d3bc7-2.dsc 2.2 KiB 940bd6b05a5adb1fd12c51e3a2c690eac61c78447adca3b109597707b468c59e
golang-check.v1_0.0+git20150729.11d3bc7.orig.tar.bz2 25.7 KiB 7359982eed0c702c8bcb6d6c6aea70b1278c87734353d8055ab7d53696a769fd
golang-check.v1_0.0+git20150729.11d3bc7-2.debian.tar.xz 3.4 KiB d3ec325c0f35bad2dadf00a3bb4d1c3c75c0bd21bcb25277be383d485222f3e9

No changes file available.

Binary packages built by this source

golang-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)