ipld-eth-server/vendor/github.com/ipfs/go-ipfs/test/sharness/t0018-indent.sh
2019-12-02 13:24:46 -06:00

14 lines
256 B
Bash
Executable File

#!/usr/bin/env bash
test_description="Test sharness test indent"
. lib/test-lib.sh
for file in $(find .. -name 't*.sh' -type f); do
test_expect_success "indent in $file is not using tabs" '
test_must_fail grep -P "^ *\t" $file
'
done
test_done