~ubuntu-branches/ubuntu/maverick/libmodule-starter-plugin-cgiapp-perl/maverick

« back to all changes in this revision

Viewing changes to lib/Module/Starter/Plugin/CGIApp/templates/titanium/test-app.t

  • Committer: Bazaar Package Importer
  • Author(s): Jaldhar H. Vyas
  • Date: 2008-09-18 22:36:44 UTC
  • Revision ID: james.westby@ubuntu.com-20080918223644-ali0eh6eno0tw5ta
Tags: upstream-0.05
ImportĀ upstreamĀ versionĀ 0.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl -T
 
2
#
 
3
# $Id$
 
4
#
 
5
use strict;
 
6
use warnings;
 
7
use Test::More tests => 1;
 
8
use Test::WWW::Mechanize::CGIApp;
 
9
 
 
10
my $mech = Test::WWW::Mechanize::CGIApp->new;
 
11
 
 
12
$mech->app('<tmpl_var main_module>');
 
13
 
 
14
$mech->get_ok();
 
15