We're using mod_perl to produce data in XML and later to be converted into HTML via XSLT, and the database is in MySQL. Our OS is Unix.
So I've been reading about how cool and powerful TDD is in .NET, Java with all the available frameworks. I've even tested NUnit before and I kind of like it. You can write the test once and use it pretty much forever.
I was wondering if there is an easy way to implement TDD for our case too with Perl?
What I want to do is to have some automated way to manage my unit test, and to be able to easily run the unit test with just one click or something.
Edit
I've found this chapter on TDD to be very useful as well as helping me design the test, and best of all it's free :)
And if you can afford it then get this book too: Perl Testing: a developer's notebook. It's really good in the sense that it break down into all the potential stuff that we need to do and it's in a tutorial based format.
Added a Perl testing reference card here.
So now I'm eager to look for some good resources, .pm, open source Perl projects which I can use to better learn how to write unit tests, etc. Can anyone recommend some here?