File: control

package info (click to toggle)
golang-github-alecthomas-assert 2.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 120 kB
  • sloc: sh: 67; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 1,460 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Source: golang-github-alecthomas-assert
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
               dh-sequence-golang,
               golang-any (>= 2:1.18~),
               golang-github-alecthomas-repr-dev (>= 0.2.0),
               golang-github-hexops-gotextdiff-dev (>= 1.0.3),
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.2
Homepage: https://github.com/alecthomas/assert
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-assert
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-alecthomas-assert.git
XS-Go-Import-Path: github.com/alecthomas/assert/v2

Package: golang-github-alecthomas-assert-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-github-alecthomas-repr-dev (>= 0.2.0),
         golang-github-hexops-gotextdiff-dev (>= 1.0.3),
         ${misc:Depends},
Description: simple assertion library using Go generics
 This library is inspired by testify/require, but with a significantly
 reduced API surface based on empirical use of that package.
 .
 It also provides much nicer diff output, e.g.
 .
   === RUN   TestFail
       assert_test.go:14: Expected values to be equal:
            assert.Data{
           -  Str: "foo",
           +  Str: "far",
              Num: 10,
            }
   --- FAIL: TestFail (0.00s)