Can you suggest a structure of tests for testing insert, select and delete operations? I suppose that I can write something like tis:
sub test_001_insert { ... insert record and do some tets }
sub test_002_select {
test_001_insert();
... select record inserted in previous test and do some tets }
sub test_003_delete {
test_002_select();
... delete the above record and do some tets }
;-)
Neat :) As far as I can see, the only drawback of this approach is the waste of time?
-- Dmitry.
------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. SourceForge.net hosts over 70,000 Open Source Projects. See the people who have HELPED US provide better services: Click here: http://sourceforge.net/supporters.php _______________________________________________ Perlunit-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/perlunit-users
