~ubuntu-branches/ubuntu/maverick/libclass-accessor-grouped-perl/maverick

« back to all changes in this revision

Viewing changes to t/basic.t

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2007-07-14 21:51:56 UTC
  • Revision ID: james.westby@ubuntu.com-20070714215156-l0iazyikbi21rpu8
Tags: upstream-0.07000
ImportĀ upstreamĀ versionĀ 0.07000

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl -wT
 
2
# $Id: /local/Class-Accessor-Grouped/t/basic.t 1693 2007-05-06T02:24:39.381139Z claco  $
 
3
use strict;
 
4
use warnings;
 
5
 
 
6
BEGIN {
 
7
    use lib 't/lib';
 
8
    use Test::More tests => 1;
 
9
 
 
10
    use_ok('Class::Accessor::Grouped');
 
11
};