From 99d6cbfa0f9d66fdca997115cd3fc42cd5e73fbd Mon Sep 17 00:00:00 2001 From: ToruIwashita Date: Wed, 9 Mar 2016 10:41:49 +0900 Subject: [PATCH] Add aggregate_failures snippet for rspec --- snippets/ruby.snippets | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/snippets/ruby.snippets b/snippets/ruby.snippets index e9509a2..a6340e4 100644 --- a/snippets/ruby.snippets +++ b/snippets/ruby.snippets @@ -723,3 +723,7 @@ snippet iiexp it { is_expected.to ${0} } snippet iiexpn it { is_expected.not_to ${0} } +snippet agg + aggregate_failures '${1:message}' do + ${0} + end