~ubuntu-branches/ubuntu/raring/libtext-wikiformat-perl/raring

« back to all changes in this revision

Viewing changes to t/merge-hash.t

  • Committer: Bazaar Package Importer
  • Author(s): Sam Johnston
  • Date: 2005-10-29 14:55:06 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051029145506-1tmftro3hh9kzh9a
Tags: 0.76-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/perl -w
 
1
#!perl
2
2
 
3
 
BEGIN
4
 
{
5
 
        chdir 't' if -d 't';
6
 
        use lib '../lib', '../blib/lib';
7
 
}
 
3
BEGIN { chdir 't' if -d 't' }
8
4
 
9
5
use strict;
 
6
use warnings;
 
7
 
10
8
use Test::More tests => 5;
11
9
use_ok( 'Text::WikiFormat' ) or exit;
12
10