https://github.com/mjgardner/test-class
Test::Class - an xUnit testing framework for Perl 5.x
https://github.com/mjgardner/test-class
cpan junit perl testing xunit
Last synced: about 2 months ago
JSON representation
Test::Class - an xUnit testing framework for Perl 5.x
- Host: GitHub
- URL: https://github.com/mjgardner/test-class
- Owner: mjgardner
- Created: 2010-04-21T13:18:45.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T21:39:57.000Z (9 months ago)
- Last Synced: 2025-04-06T10:46:57.520Z (2 months ago)
- Topics: cpan, junit, perl, testing, xunit
- Language: Perl
- Homepage: https://metacpan.org/release/Test-Class
- Size: 707 KB
- Stars: 20
- Watchers: 7
- Forks: 20
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
Awesome Lists containing this project
README
# Source code of Test::Class Perl module
For documentation see [Test::Class](https://metacpan.org/pod/Test::Class) on MetaCPAN.
## Release process
* Update VERSION number in every .pm file in lib/
* Update the Changes file.```
perl Makefile.PL
make
make test
(TODO RELEASE_TESTING=1 prove xt/ )
make dist
``````
git tags -a x.xx -m x.xx
git push --tags
```