File: control

package info (click to toggle)
golang-github-jacobsa-ogletest 0.0~git20150610-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 240 kB
  • ctags: 276
  • sloc: makefile: 7
file content (42 lines) | stat: -rw-r--r-- 1,934 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
39
40
41
42
Source: golang-github-jacobsa-ogletest
Section: devel
Priority: extra
Maintainer: pkg-go <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Michael Stapelberg <stapelberg@debian.org>
Build-Depends: debhelper (>= 9),
               dh-golang,
               golang-go,
               golang-github-jacobsa-oglematchers-dev,
               golang-github-jacobsa-oglemock-dev,
               golang-github-jacobsa-reqtrace-dev,
               golang-go.net-dev (>= 0.0+git20150226.3d87fd6)
Standards-Version: 3.9.6
Homepage: https://github.com/jacobsa/ogletest
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-go/packages/golang-github-jacobsa-ogletest.git;a=summary
Vcs-Git: git://anonscm.debian.org/pkg-go/packages/golang-github-jacobsa-ogletest.git

Package: golang-github-jacobsa-ogletest-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends},
         golang-go,
         golang-github-jacobsa-oglematchers-dev,
         golang-github-jacobsa-oglemock-dev,
         golang-github-jacobsa-reqtrace-dev,
         golang-go.net-dev (>= 0.0+git20150226.3d87fd6)
Built-Using: ${misc:Built-Using}
Description: unit testing framework for Go
 ogletest is a unit testing framework for Go with the following features:
 .
  * An extensive and extensible set of matchers for expressing expectations.
  * Automatic failure messages; no need to say
    t.Errorf("Expected %v, got %v"...).
  * Clean, readable output that tells you exactly what you need to know.
  * Built-in support for mocking through the oglemock package.
  * Style and semantics similar to Google Test and Google JS Test.
 .
 It integrates with Go's built-in testing package, so it works with the go test
 command, and even with other types of test within your package. Unlike the
 testing package which offers only basic capabilities for signalling failures,
 it offers ways to express expectations and get nice failure messages
 automatically.