From 128355895b0f5ba03fe6579444fcc853dc66fcef Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Thu, 19 Feb 2015 18:39:26 +0000 Subject: [PATCH] Elixir: test with arg --- snippets/elixir.snippets | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/snippets/elixir.snippets b/snippets/elixir.snippets index 7e47b53..4a51ae8 100644 --- a/snippets/elixir.snippets +++ b/snippets/elixir.snippets @@ -102,6 +102,10 @@ snippet test test "${1:test_name}" do ${0} end +snippet test "A ExUnit test" b + test "${1:test_name}", %{${2:arg: arg}} do + ${0} + end snippet try try .. rescue .. end try do ${1}