~ubuntu-branches/ubuntu/trusty/libmoosex-has-sugar-perl/trusty-proposed

« back to all changes in this revision

Viewing changes to t/lib/T10Saccharin/TestPackage.pm

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu
  • Date: 2010-10-04 19:42:43 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101004194243-pbq4ccon2503ufj1
Tags: 0.05046611-1
* New upstream release
* Standards-Version 3.9.1 (no changes)
* Use new 3.0 (quilt) source format
* Update to new DEP5 copyright format
* Drop RELEASE_TESTING and related test dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package T10Saccharin::TestPackage;
 
2
 
 
3
# $Id:$
 
4
use strict;
 
5
use warnings;
 
6
use Moose;
 
7
use namespace::autoclean;
 
8
 
 
9
use MooseX::Has::Sugar::Saccharin;
 
10
use MooseX::Types::Moose qw( :all );
 
11
 
 
12
has roattr => required ro Str;
 
13
 
 
14
has rwattr => required rw Str;
 
15
 
 
16
 
 
17
__PACKAGE__->meta->make_immutable;
 
18
 
 
19
1;
 
20