From f974aea4bd48e39ec29d5122267067c5e4200f1b Mon Sep 17 00:00:00 2001 From: John Backus Date: Thu, 29 Oct 2015 11:50:27 -0700 Subject: [PATCH] Remove redundant 'mutant-rspec' in rails section --- README.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/README.md b/README.md index 327cede0..9aa5c4e2 100644 --- a/README.md +++ b/README.md @@ -67,15 +67,7 @@ which will fail specs which run for longer than 5 seconds. Rails ------- -Assuming you are using rspec, you can mutation test Rails models by adding the following lines to your Gemfile: - -```ruby -group :test do - gem 'mutant-rspec' -end -``` - -Next, run bundle and comment out ```require 'rspec/autorun'``` from your spec_helper.rb file. Having done so you should be able to use commands like the following: +To mutation test Rails models with rspec comment out ```require 'rspec/autorun'``` from your spec_helper.rb file. Having done so you should be able to use commands like the following: ```sh RAILS_ENV=test bundle exec mutant -r ./config/environment --use rspec User