From 1008d952cb6e4484c473111c2d5116b77327fa3c Mon Sep 17 00:00:00 2001 From: zephyr-dev Date: Thu, 15 Nov 2012 10:41:08 -0500 Subject: [PATCH] Update RSpec "it" snippet to not use "should" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit describe "using 'should' in 'it' blocks"   it "makes for poorly named tests" do      it should_not be_encouraged   end end --- snippets/ruby.snippets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index 5dce39b2..241deb54 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -7,7 +7,7 @@ snippet cont Context ${2} end snippet it it block - it "${1:should do something}" do + it "${1:does something}" do ${2} end snippet bef Before each test