mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 14:50:19 +00:00
7 lines
138 B
Bash
Executable File
7 lines
138 B
Bash
Executable File
#!/usr/bin/env bats
|
|
export BAKEFILE=python.Bakefile
|
|
@test "python" {
|
|
run bake --silent python
|
|
[[ "${lines[0]}" == "not bash" ]]
|
|
}
|