2009-08-29 17:59:02 +00:00

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});