MrCBofBCinTX
Technical User
I want to write tests for my application that views (with searches), inserts and updates a PostgreSQL database. I need to test the web side to see if inserts and updates chain up and down through the tables. I also need to test the database side to see if those changes actually reflect web side actions.
I want to release all of this as a proper package open source.
I know that I will need to use something like LWP/ cookies.
and $dbh tests.
The web side can accept GET's without a problem.
I am inexperienced with testing besides some manual tests I have done.
Which revealed some nasty bugs.
I really need to do a lot of tests, but many are similar.
The insert and update tests are much harder since they run up/down into many other tables.
Are there any base/CPAN modules I should look at?
Thanks
I want to release all of this as a proper package open source.
I know that I will need to use something like LWP/ cookies.
and $dbh tests.
The web side can accept GET's without a problem.
I am inexperienced with testing besides some manual tests I have done.
Which revealed some nasty bugs.
I really need to do a lot of tests, but many are similar.
The insert and update tests are much harder since they run up/down into many other tables.
Are there any base/CPAN modules I should look at?
Thanks