forked from cerc-io/ipld-eth-server
14 lines
256 B
Bash
Executable File
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
|