mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
12 lines
277 B
Plaintext
12 lines
277 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: cla
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Create functional test class
|
|
## condition: "source.ruby"
|
|
# --
|
|
require File.dirname(__FILE__) + '/../test_helper'
|
|
|
|
class ${1:Model}ControllerTest < ActionController::TestCase
|
|
deft$0
|
|
end
|