Skip to content

Instantly share code, notes, and snippets.

@seven1m
Last active May 31, 2018 22:32
Show Gist options
  • Save seven1m/666cf3f1f128119ad210 to your computer and use it in GitHub Desktop.
Save seven1m/666cf3f1f128119ad210 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Redirect output to stderr.
exec 1>&2
egrep -r --exclude=spec/spec_helper.rb ":focus|focus:|fdescribe|fcontext|fit ['\"]" spec
if [[ $? == 0 ]]; then
echo "Thou must not :focus"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment