Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a flaky test.
  • Loading branch information
perlDreamer committed Jan 16, 2012
1 parent 3b3502b commit b1df3ad
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions t/Asset/Wobject/Survey/package.t
Expand Up @@ -40,14 +40,16 @@ $sJSON->update([0,0,1], { text => 'two',});
$sJSON->update([0,0,2], { text => 'more than two',});
$sJSON->update([0,1], { variable => 'name', questionType => 'Text' });

$survey->persistSurveyJSON;

$survey->addType('toes', [0,0]);

$survey->persistSurveyJSON; ##This does not update the SurveyJSON object cacched in the Survey object
$survey=$survey->cloneFromDb;

my $asset_data = $survey->exportAssetData();

ok exists $asset_data->{question_types}, 'question_types entry exists in asset data to package';
ok exists $asset_data->{question_types}->{toes}, 'the toes type in a question type';
ok exists $asset_data->{question_types}->{toes}, 'the toes type in a question type' or
explain $asset_data;
ok !exists $asset_data->{question_types}->{name}, 'name question not in question types';

$asset_data->{question_types}->{fingers} = clone $asset_data->{question_types}->{toes};
Expand Down

0 comments on commit b1df3ad

Please sign in to comment.