~ubuntu-branches/ubuntu/precise/libcgi-formbuilder-perl/precise

« back to all changes in this revision

Viewing changes to t/3b-multi-page.t

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard
  • Date: 2011-09-11 02:55:17 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110911025517-nhr6j6fwwc9xc4l1
Tags: 3.06-1
* New upstream release.
* Use CDBS perl-makemaker.mk (not deprecated perlmodule.mk).
  Tighten build-dependency on CDBS.
* Update copyright file:
  + Fix use Comment field (not License-Comments).
  + Quote license names in comments.
* Add patch cherry-picked upstream to fix testsuite.
* Update package relations:
  + Build-depend on and suggest libcgi-ssi-perl.
  + Make suggestions unversioned and drop conflicts: satisfied even in
    oldstable.
  + Maintain all relations using CDBS in rules file.
* Stop preserving cruft no long shipped upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
 
3
 
# Copyright (c) 2000-2006 Nathan Wiger <nate@wiger.org>.
 
3
# Copyright (c) Nate Wiger http://nateware.com.
4
4
# All Rights Reserved. If you're reading this, you're bored.
5
5
# 3b-multi-page.t - test C::FB::Multi support
6
6
 
15
15
our $TESTING = 1;
16
16
our $DEBUG = $ENV{DEBUG} || 0;
17
17
our $VERSION;
18
 
BEGIN { $VERSION = '3.0501'; }
 
18
BEGIN { $VERSION = '3.06'; }
19
19
 
20
20
use Test;
21
21
use FindBin;
39
39
$ENV{REQUEST_METHOD} = 'GET';
40
40
$ENV{QUERY_STRING}   = 'ticket=111&user=pete&replacement=TRUE&action=Unsubscribe&name=Pete+Peteson&email=pete%40peteson.com&extra=junk&_submitted=1&blank=&two=&two=&_page=2&_submitted_p2=2';
41
41
 
42
 
use CGI::FormBuilder 3.0501;
 
42
use CGI::FormBuilder 3.06;
43
43
use CGI::FormBuilder::Multi;
44
44
use CGI::FormBuilder::Test;
45
45