mirror of
https://github.com/eth-p/bat-extras.git
synced 2025-01-09 14:48:14 +01:00
13 lines
225 B
Bash
13 lines
225 B
Bash
|
setup() {
|
||
|
use_shim 'batdiff'
|
||
|
}
|
||
|
|
||
|
test:version() {
|
||
|
description "Test 'batdiff --version'"
|
||
|
snapshot stdout
|
||
|
snapshot stderr
|
||
|
|
||
|
batdiff --version | awk 'FNR <= 1 { print $1 }'
|
||
|
batdiff --version | awk 'p{print} /^$/ { p=1 }'
|
||
|
}
|