All checks were successful
continuous-integration/drone/push Build is passing
14 lines
272 B
Bash
14 lines
272 B
Bash
#!/usr/bin/env bash
|
|
|
|
setup() {
|
|
load "$PWD/tests/integration/helpers/common"
|
|
_common_setup
|
|
}
|
|
|
|
@test "recipe list with pattern" {
|
|
run $ABRA recipe list --pattern cloud
|
|
assert_success
|
|
assert_output --partial 'nextcloud'
|
|
refute_output --partial 'matrix-synapse'
|
|
}
|