|
Revision 1959, 438 bytes
(checked in by karpet, 1 year ago)
|
init
|
| Line | |
|---|
| 1 |
# Before `make install' is performed this script should be runnable with |
|---|
| 2 |
# `make test'. |
|---|
| 3 |
use strict; |
|---|
| 4 |
use warnings; |
|---|
| 5 |
|
|---|
| 6 |
######################### |
|---|
| 7 |
|
|---|
| 8 |
# change 'tests => 1' to 'tests => last_test_to_print'; |
|---|
| 9 |
|
|---|
| 10 |
use Test::More tests => 1; |
|---|
| 11 |
BEGIN { use_ok('SWISH::API') }; |
|---|
| 12 |
|
|---|
| 13 |
######################### |
|---|
| 14 |
|
|---|
| 15 |
# Insert your test code below, the Test::More module is use()ed here so read |
|---|
| 16 |
# its man page ( perldoc Test::More ) for help writing this test script. |
|---|
| 17 |
|
|---|