abra/tests/integration/recipe_list.bats
decentral1se dc4c6784cb
All checks were successful
continuous-integration/drone/push Build is passing
test: integration test patches
2024-12-28 16:39:58 +01:00

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'
}