Skip to content

Instantly share code, notes, and snippets.

@tom025
Last active August 29, 2015 14:19
Show Gist options
  • Save tom025/44e648a05fa5053f61e7 to your computer and use it in GitHub Desktop.
Save tom025/44e648a05fa5053f61e7 to your computer and use it in GitHub Desktop.
Replace `Ω(...).Should(...)` with `Expect(...).To(...)` in ginkgo tests
# Using Mac OS X 10.10 `sed`
find . -name '*_test.go' | xargs sed -E -i '' -e 's/Ω\((.+)\)\.(Should|To)(\(|Not\()(.+)$/Expect(\1).To\3\4/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment