Upgrade this test for Definition. Something bad is still happening in export.

This commit is contained in:
Colin Kuskie 2010-06-04 13:48:04 -07:00
parent 0a9785e258
commit 910a0a09dd
2 changed files with 10 additions and 17 deletions

View file

@ -48,6 +48,7 @@ my $dummy = WebGUI::Asset->getDefault($session)->addChild({
synopsis => 'Dummy Synopsis',
description => 'Dummy Description',
});
WebGUI::Test->addToCleanup($dummy);
#####################################################
#
@ -185,17 +186,4 @@ cmp_bag(
'exportAssetCollateral: feed files exported, shawshank.html file'
);
#####################################################
#
# exportAssetCollateral
#
#####################################################
#----------------------------------------------------------------------------
# Cleanup
END {
$dummy->purge;
my $tag = WebGUI::VersionTag->getWorking($session, 'noCreate');
$tag->rollback if $tag;
}
#vim:ft=perl