fixes for weaken and iterator
This commit is contained in:
parent
60cefb3102
commit
247c607393
22 changed files with 83 additions and 47 deletions
|
|
@ -273,37 +273,37 @@ cmp_deeply(
|
|||
[
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=edit',
|
||||
'url' => re('func=edit$'),
|
||||
'label' => 'Edit'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=editSurvey',
|
||||
'url' => re('func=editSurvey$'),
|
||||
'label' => 'Edit Survey'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=takeSurvey',
|
||||
'url' => re('func=takeSurvey$'),
|
||||
'label' => 'Take Survey'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=graph',
|
||||
'url' => re('func=graph$'),
|
||||
'label' => 'Visualize'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=editTestSuite',
|
||||
'url' => re('func=editTestSuite$'),
|
||||
'label' => 'Test Suite'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=runTests',
|
||||
'url' => re('func=runTests$'),
|
||||
'label' => 'Run All Tests'
|
||||
},
|
||||
{
|
||||
'extras' => undef,
|
||||
'url' => '/home?func=runTests;format=tap',
|
||||
'url' => re('func=runTests;format=tap$'),
|
||||
'label' => 'Run All Tests (TAP)'
|
||||
}
|
||||
],
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ cmp_deeply (
|
|||
{
|
||||
assetId => $article->getId,
|
||||
title => $article->get('title'),
|
||||
synopsis => $row->{keywords}, # synopsis defaults to value for keywords
|
||||
synopsis => $article->get('synopsis') || '',
|
||||
url => $article->get('url'),
|
||||
revisionDate => $article->get('revisionDate'),
|
||||
creationDate => $article->get('creationDate'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue