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
|
Source: bats-assert
Section: devel
Maintainer: Debian Bats team <team+bats@tracker.debian.org>
Uploaders: Gioele Barabucci <gioele@svario.it>
Build-Depends:
debhelper-compat (= 13),
bats,
bats-support,
Standards-Version: 4.7.2
Homepage: https://github.com/bats-core/bats-assert
Vcs-Browser: https://salsa.debian.org/bats-team/bats-assert
Vcs-Git: https://salsa.debian.org/bats-team/bats-assert.git
Package: bats-assert
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, bats-support
Enhances: bats
Description: Helper library providing common assertions for Bats
bats-assert provides various ready-made assertions that can be used
to make Bats tests simpler to understand and to debug.
.
For example:
.
* assert_success: exit status is 0.
* assert_output: output contains given content.
* assert_line: a specific line of output contains given content.
|