~ubuntu-branches/ubuntu/trusty/libtext-markdown-perl/trusty

« back to all changes in this revision

Viewing changes to t/25fulldocs-phpmarkdown.t

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt
  • Date: 2008-07-24 21:06:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080724210658-kbpqulb200ddijqe
Tags: 1.0.21-1
* New upstream release.
  + Update pod_name patch accordingly
* Install Todo as documentation
* Refresh debian/rules for debhelper 7
* Add myself to Uploaders.
* debian/control: Use dist-based URL for Homepage field
* Update debian/copyright:
  + Adopt to current proposed format
  + Replace "Copyright" and "(C)" by "©"
  + Include full license text as the version in
    /usr/share/common-licenses/BSD refers to the University as copyright
    holder
  + Move pointer to GPL and Artistic license to the right section

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
use Test::More;
 
4
use FindBin qw($Bin);
 
5
 
 
6
require "$Bin/20fulldocs-text-multimarkdown.t";
 
7
 
 
8
tidy();
 
9
 
 
10
my $docsdir = "$Bin/PHP_Markdown-from-MDTest1.1.mdtest";
 
11
my @files = get_files($docsdir);
 
12
 
 
13
plan tests => scalar(@files) + 1;
 
14
 
 
15
use_ok('Text::Markdown');
 
16
 
 
17
my $m = Text::Markdown->new();
 
18
 
 
19
TODO: {
 
20
    local $TODO = 'Have not fixed a load of the bugs PHP markdown has yet.';
 
21
    run_tests($m, $docsdir, @files);
 
22
};