• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H16-Jan-2021-11

lib/Test/H16-Jan-2021-1,178464

t/H16-Jan-2021-449359

xt/H16-Jan-2021-54

ChangesH A D16-Jan-20213.1 KiB10979

INSTALL.SKIPH A D16-Jan-2021110 75

LICENSEH A D16-Jan-20217.8 KiB178135

MANIFESTH A D16-Jan-2021509 2625

MANIFEST.SKIPH A D16-Jan-20211.1 KiB6946

META.jsonH A D16-Jan-20211.5 KiB6463

META.ymlH A D16-Jan-2021873 3534

Makefile.PLH A D16-Jan-20212.8 KiB11989

README.podH A D16-Jan-20213.8 KiB12377

README.pod

1=pod
2
3=encoding utf8
4
5=for HTML <a href="../../actions?query=workflow%3Amacos"><img src="../../workflows/macos/badge.svg"></a>
6
7=for HTML <a href="../../actions?query=workflow%3Aubuntu"><img src="../../workflows/ubuntu/badge.svg"></a>
8
9=for HTML <a href="../../actions?query=workflow%3Awindows"><img src="../../workflows/windows/badge.svg"></a>
10
11=for HTML <a href='https://ci.appveyor.com/project/briandfoy/test-data'><img src='https://ci.appveyor.com/api/projects/status/pbucnowyaqdi5ipx?svg=true' /></a>
12
13=for HTML <a href='https://coveralls.io/github/briandfoy/test-data?branch=master'><img src='https://coveralls.io/repos/github/briandfoy/test-data/badge.svg?branch=master' alt='Coverage Status' /></a>
14
15=for HTML <a href="https://github.com/briandfoy/test-data/blob/master/LICENSE"><img src="https://img.shields.io/cpan/l/Test-Data.svg" /></a>
16
17=for HTML <a href="https://metacpan.org/pod/Test::Data"><img src="https://img.shields.io/cpan/v/Test-Data.svg" /></A>
18
19=head1 The Test::Data module
20
21This is the I<README> for the L<Test::Data> Perl module. It provides
22convenience methods to test things about Perl data type instead of
23their values.
24
25You're probably looking at this because you don't know where else to
26find what you're looking for. Read this once and you might never have
27to read one again for any Perl module.
28
29=head2 Documentation
30
31To read about L<Test::Data>, look at the embedded documentation
32in the module itself. Inside the distribution, you can format it
33with L<perldoc|https://perldoc.perl.orgperldoc.html>:
34
35	% perldoc lib/Test/Data.pm
36
37If you have already installed the module, you can specify the module
38name instead of the file location:
39
40	% perldoc Test::Data
41
42You can read the documentation and inspect the meta data at
43L<MetaCPAN|https://metacpan.org/pod/Test::Data>.
44
45The standard module documentation has example uses in the SYNOPSIS
46section, but you can also look in the I<examples/> directory (if it's
47there), or look at the test files in I<t/>.
48
49=head2 Installation
50
51You can install this module with a CPAN client, which will resolve
52and install the dependencies:
53
54	% cpan Test::Data
55	% cpanm Test::Data
56
57You can also install directly from the distribution directory, which
58will also install the dependencies:
59
60	% cpan .
61	% cpanm .
62
63You could install just this module manually:
64
65	% perl Makefile.PL
66	% make
67	% make test
68	% make install
69
70You probably don't want to do that unless you're fiddling with the
71module and only want to run the tests without installing anything.
72
73=head2 Source location
74
75The meta data, such as the source repository and bug tracker, is in
76I<Makefile.PL> or the I<META.*> files it creates. You can find that on
77those CPAN web interfaces, but you can also look at files directly in
78the source repository:
79
80=over 4
81
82=item *	L<https://github.com/briandfoy/test-data>
83
84=back
85
86If you find a problem, file a ticket in the L<issue
87tracker|https://github.com/briandfoy/test-data/issues>:
88
89=over 4
90
91=item *	L<https://github.com/briandfoy/test-data/issues>
92
93=back
94
95=head2 Getting help
96
97Although I'm happy to hear from module users in private email,
98that's the best way for me to forget to do something.
99
100Besides the issue trackers, you can find help at
101L<Perlmonks|http://www.perlmonks.org> or
102L<Stackoverflow|http://www.stackoverflow.com>, both of which have many
103competent Perlers who can answer your question, almost in real time.
104They might not know the particulars of this module, but they can help
105you diagnose your problem.
106
107You might like to read L<brian's Guide to Solving Any Perl
108Problem|https://briandfoy.github.io/brians-guide-to-solving-any-perl-problem/>.
109
110=head2 Copyright and License
111
112You should have received a I<LICENSE> file, but the license is also noted
113in the module files. About the only thing you can't do is pretend that
114you wrote code that you didn't.
115
116=head2 Good luck!
117
118Enjoy,
119
120brian d foy, bdfoy@cpan.org
121
122=cut
123