mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 22:45:39 +08:00
12 lines
243 B
Bash
12 lines
243 B
Bash
#!/usr/bin/env bats
|
|
|
|
PATH="$PATH:$BATS_TEST_DIRNAME/../bin"
|
|
|
|
export GITHUB_EVENT_PATH="$BATS_TEST_DIRNAME/fixtures/deployment.json"
|
|
|
|
@test "returs deployment task" {
|
|
run deployment-get-task
|
|
[ "$status" -eq 0 ]
|
|
[ "$output" = "deploy" ]
|
|
}
|