mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
12 lines
319 B
Plaintext
12 lines
319 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: deftg
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: def test_should_get_action
|
|
## condition: "meta.rails.functional_test"
|
|
# --
|
|
def test_should_get_${1:action}
|
|
${2:@${3:model} = ${4:$3s}(:${5:fixture_name})
|
|
}get :${1}${6:, :id => @$3.to_param}
|
|
assert_response :success
|
|
$0
|
|
end |