11 lines
255 B
Bash
Executable File
11 lines
255 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Do not commit any focused or excluded tests
|
|
if grep --color -r 'spec' -E -e '^( |\t)*(fit|fdescribe|xit|xdescribe)'; then
|
|
echo '✘ You have focused and/or skipped tests'
|
|
exit 1
|
|
fi
|
|
|
|
# Match style guide
|
|
rubocop './lib/' './spec'
|