From 119e5d96455f41e407c9a3c6348f956beca77f3e Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 12 Sep 2008 23:16:25 +0000 Subject: [PATCH] clean-up, get ready to test set --- t/Workflow/Instance.t | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/t/Workflow/Instance.t b/t/Workflow/Instance.t index 8acb0e355..5a74fe272 100644 --- a/t/Workflow/Instance.t +++ b/t/Workflow/Instance.t @@ -97,10 +97,15 @@ my $instanceWorkflow = $instance->getWorkflow; is($instanceWorkflow->getId, $wf->getId, 'getWorkflow returns a copy of the workflow for the instance'); is($instanceWorkflow->getId, $wf->getId, 'getWorkflow, caching check'); +############################################################################### +# +# set +# +############################################################################### #---------------------------------------------------------------------------- # Cleanup END { - #$wf->delete; ##Deleting a Workflow deletes its instances, too. + $wf->delete; ##Deleting a Workflow deletes its instances, too. }