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