golang-github-smallstep-assert 0.0~git20200723.82e2b9b-4 source package in Ubuntu

Changelog

golang-github-smallstep-assert (0.0~git20200723.82e2b9b-4) unstable; urgency=medium

  * Source only upload (last revision was accidental binary upload)

 -- Peymaneh <email address hidden>  Mon, 05 Dec 2022 11:41:01 +0100

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-smallstep-assert_0.0~git20200723.82e2b9b-4.dsc 1.8 KiB 7ece7d9b9f0b5c4900ee8447579599c858d5aabbb7ee7a368c13215011456445
golang-github-smallstep-assert_0.0~git20200723.82e2b9b.orig.tar.gz 4.0 KiB d2835d078fd03ce1698672b5f802f631ecbfaf3df6ff0d79491149f409d99c37
golang-github-smallstep-assert_0.0~git20200723.82e2b9b-4.debian.tar.xz 2.6 KiB 351ba491773133b9406e0e4cbbc4e0f3594997fd17532a99c9eab17e72a0ddc1

No changes file available.

Binary packages built by this source

golang-github-smallstep-assert-dev: simple assertion framework written in go

 This library provides an assertion framework including the following functions:
  - Equals: checks that expected and actual are equal.
  - Error: checks if err is not nil.
  - False: checks that a condition is false.
  - Fatal: checks that a condition is true or marks the test as failed and stop
    it's execution.
  - FatalError: checks that a error is nil or marks the test as failed and stop
    it's execution.
  - HasPrefix: checks that the string contains the given prefix.
  - HasSuffix: checks that the string ends with the given suffix.
  - Len: checks that the application of len() to value match the expected value.
  - Nil: checks that the value is nil.
  - NoError: checks if err nil.
  - NotEquals: checks that expected and actual are not equal.
  - NotNil: checks that the value is not nil.
  - Panic: checks that the passed function panics.
  - True: checks that a condition is true.
  - Type: checks that the value matches the type of expected.
 .
 Documentation: http://godoc.org/github.com/smallstep/assert