-
-
Save rymai/6620991 to your computer and use it in GitHub Desktop.
RSpec's New Expectation Syntax - migration script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Include this in your spec_helper.rb: | |
config.expect_with :rspec do |c| | |
c.syntax = :expect | |
end | |
# Then, run: | |
find spec -name "*.rb" -exec gsed -i -e "s/\(\s\+\)\(.*\)\.should_not /\1expect(\2).not_to /g" -e "s/\(\s\+\)\(.*\)\.should /\1expect(\2).to /g" -e "s/\(\s\+\)\(.*\)\.should_receive/\1expect(\2).to receive/g" -e "s/\(\s\+\)\(.*\)\.should_not_receive/\1expect(\2).to_not receive/g" "{}" \; | |
# About RSpec's New Expectation Syntax | |
# http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment