13 lines
226 B
Bash
13 lines
226 B
Bash
#!/usr/bin/env bash
|
|
|
|
setup() {
|
|
load "$PWD/tests/integration/helpers/common"
|
|
_common_setup
|
|
}
|
|
|
|
@test "recipe versions" {
|
|
run $ABRA recipe versions gitea
|
|
assert_success
|
|
assert_output --partial '2.3.2+1.20.3-rootless'
|
|
}
|