Skip to content

Instantly share code, notes, and snippets.

@thibaudgg
Forked from lucascaton/gist:3605012
Created October 6, 2013 13:02
Show Gist options
  • Save thibaudgg/6853794 to your computer and use it in GitHub Desktop.
Save thibaudgg/6853794 to your computer and use it in GitHub Desktop.
# 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" "{}" \;
# 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