~ubuntu-branches/ubuntu/vivid/libclass-accessor-grouped-perl/vivid-proposed

« back to all changes in this revision

Viewing changes to t/lib/AccessorGroupsRO.pm

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2010-08-22 12:48:39 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100822124839-gg63xjtf0e3bbt5i
Tags: 0.09004-1
* New upstream release.
* debian/copyright: point to /usr/share/common-licenses/GPL-1.
* Set Standards-Version to 3.9.1 (no changes).
* debian/control: remove version from libsub-name-perl (build) dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__PACKAGE__->mk_group_ro_accessors('single', 'singlefield');
7
7
__PACKAGE__->mk_group_ro_accessors('multiple', qw/multiple1 multiple2/);
8
 
__PACKAGE__->mk_group_ro_accessors('listref', [qw/lr1name lr1field/], [qw/lr2name lr2field/]);
 
8
__PACKAGE__->mk_group_ro_accessors('listref', [qw/lr1name lr1;field/], [qw/lr2name lr2'field/]);
9
9
 
10
10
sub new {
11
11
    return bless {}, shift;