mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 21:13:04 +00:00
13 lines
208 B
Plaintext
13 lines
208 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: test
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Test
|
|
# --
|
|
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
use Test::More tests => ${1:1};
|
|
use ${2:ModuleName};
|
|
|
|
ok(${3:assertion});
|