fixes for weaken and iterator

This commit is contained in:
Doug Bell 2010-06-01 19:37:53 -05:00
parent 60cefb3102
commit 247c607393
22 changed files with 83 additions and 47 deletions

View file

@ -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)'
}
],