golang-github-issue9-assert 0.0~git20170908.0.ceac1aa-1 source package in Ubuntu

Changelog

golang-github-issue9-assert (0.0~git20170908.0.ceac1aa-1) unstable; urgency=medium

  * New upstream build.
  * Maintenance updates:
    - Standards-Version bump.
    - Clean up d/watch.
    - Add Testsuite to d/control.

 -- Michael Lustfield <email address hidden>  Thu, 28 Sep 2017 02:10:29 -0500

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

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-issue9-assert_0.0~git20170908.0.ceac1aa-1.dsc 2.4 KiB c6aebdf3fab8d399ae58b397a97d90bdb32252b1a210902d983d35e6e475e3d0
golang-github-issue9-assert_0.0~git20170908.0.ceac1aa.orig.tar.xz 8.9 KiB bc7f981f7a6f34f6c4fcc10f990bdc4069ed173c353c3b7e1c6c813aa9bc4b49
golang-github-issue9-assert_0.0~git20170908.0.ceac1aa-1.debian.tar.xz 2.0 KiB 220ddbe23ef2e7e11df8e797c231fc3715534b0880393eca6b6e69b79a955f43

No changes file available.

Binary packages built by this source

golang-github-issue9-assert-dev: Simple extension to test a series of assert functions

 The issue9-assert library provides a simple extension to testing that
 provides a series of assert functions that are convenient for use in
 test functions
 .
 Example:
    func TestA(t testing.T) {
        v := true
        assert.True(v)
        a := assert.New(t)
        a.True(v)
    }
    // Can also be used for testing.B
    func Benchmark1(b *testing.B) {
        a := assert.New(b)
        v := false
        a.True(v)
        for(i:=0; i<b.N; i++) {
            // do something
        }
    }