mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
15 lines
321 B
Plaintext
15 lines
321 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: tc
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: class .. < Test::Unit::TestCase .. end
|
|
## condition: "source.ruby"
|
|
# --
|
|
require "test/unit"
|
|
|
|
require "${1:library_file_name}"
|
|
|
|
class Test${2:${1/([\w&&[^_]]+)|./\u$1/g}} < Test::Unit::TestCase
|
|
def test_${3:case_name}
|
|
$0
|
|
end
|
|
end |