e06c4cc43e63e4567d641fde3f8f1cab267705f2
[gitmo/MooseX-Attribute-Cached.git] / t / 001_basic.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More plan => 1;
7
8 =head1 NAME
9
10 001_basic.t; tests the overall basic functionality
11
12 =head1 DESCRIPTION
13
14 Create a L<Moose> class that uses the Caching role and the try out the basic
15 functionality.  This test uses L<Cache::FastMmap> as the default cache storage
16 but you can override that with the following %ENV to test against your local
17 L<Cache::Memcached> based caching server:
18
19         TDB write code for %ENV
20
21 =head1 TESTS
22
23 This package defines the following tests.
24
25 =head2 Create Test Class
26
27 Create a class that uses L<MooseX::Attribute::Cached> and has some attributes
28 that are cached.
29
30 =cut
31
32
33 =head1 AUTHOR
34
35 John Napiorkowski, C<< <john.napiorkowski at takkle.com> >>
36
37 =head1 COPYRIGHT & LICENSE
38
39 Copyright 2008 John Napiorkowski, all rights reserved.
40
41 This program is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44 =cut
45
46 1;