Compare commits

..

1 Commits

Author SHA1 Message Date
p4u1 074fbb7613 feat: add git-user and git-email flags to recipe new
continuous-integration/drone/pr Build is passing Details
2024-03-07 17:48:24 +01:00
1 changed files with 2 additions and 2 deletions

View File

@ -23,14 +23,14 @@ teardown(){
}
@test "create new recipe" {
run $ABRA recipe new foobar --git-user foo --git-email foo@example.com
run $ABRA recipe new foobar --git-user foo --git-email foo@example.com
assert_success
assert_output --partial 'Your new foobar recipe has been created'
assert_exists "$ABRA_DIR/recipes/foobar"
}
@test "create new app from new recipe" {
run $ABRA recipe new foobar --git-user foo --git-email foo@example.com
run $ABRA recipe new foobar --git-user foo --git-email foo@example.com
assert_success
run $ABRA app new foobar \