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

« back to all changes in this revision

Viewing changes to t/Wiki.t

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Mako Hill
  • Date: 2011-02-12 14:44:49 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110212144449-6lcsb4ihr1ayymis
Tags: 0.79-1
* New upstream release. (Closes: #583317)
* Fixed broken watch file. (Closes: #449734)
* Move to new source format and update package in a various ways.
* Suppress packlist.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!perl
2
2
 
3
 
BEGIN { chdir 't' if -d 't' }
4
 
 
5
3
use strict;
6
4
use warnings;
7
5
 
140
138
 
141
139
# test overridable tags
142
140
 
143
 
ok( ! UNIVERSAL::can( 'main', 'wikiformat' ),
144
 
        'Module should import nothing by default' );
 
141
ok( ! main->can( 'wikiformat' ), 'Module should import nothing by default' );
145
142
 
146
143
can_ok( 'Text::WikiFormat', 'import' );
147
144