specky/snippets/rspec.snippets
branchvim-stuff
changeset 19 763cef799c74
parent 12 a9f1ce3766d1
--- a/specky/snippets/rspec.snippets	Fri Oct 01 08:16:47 2010 -0700
+++ b/specky/snippets/rspec.snippets	Sat Dec 18 00:56:09 2010 -0800
@@ -56,9 +56,14 @@
 	context "${1:context}" do
 		${2}
 	end
+# this is the 'old' mock syntax (rspec 1.x)
+# use 'double' for rspec 2.x
 snippet mock
 	${1:var} = mock( "${2:mock_name}"${3:, :null_object => true} )
 	${4}
+snippet dou
+	${1:var} = double( "${2:double_name}" )${3:.as_null_object}
+	${4}
 snippet st
 	stub!( :${1:expectation} ).with( ${2:args} ).and_return( ${3} )
 snippet bef Before each test