mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
18 lines
361 B
Bash
Executable File
18 lines
361 B
Bash
Executable File
source ./_common.sh
|
|
|
|
@test "confirm works" {
|
|
timeout 1 "bake -b confirm.Bakefile secure"
|
|
}
|
|
|
|
@test "confirm --yes works" {
|
|
bake -b confirm.Bakefile secure --yes
|
|
}
|
|
|
|
@test "confirm:secure works" {
|
|
timeout 1 "bake -b confirm.Bakefile secure/real"
|
|
}
|
|
|
|
@test "confirm:secure --yes don't work" {
|
|
timeout 1 "bake -b confirm.Bakefile secure/real --yes"
|
|
}
|