clean up old macroText statements

This commit is contained in:
Colin Kuskie 2006-07-29 03:50:34 +00:00
parent 84117932af
commit be6fc4b4f9
6 changed files with 6 additions and 36 deletions

View file

@ -34,7 +34,6 @@ my @testSets = (
comment => 'Visitor sees nothing',
userId => 1,
adminStatus => 'off',
macroText => q!^AdminToggle();!,
onText => q!!,
offText => q!!,
template => q!!,
@ -44,7 +43,6 @@ my @testSets = (
comment => 'Admin sees onText, default call',
userId => 3,
adminStatus => 'off',
macroText => q!^AdminToggle();!,
onText => $i18n->get(516),
offText => $i18n->get(517),
template => q!!,
@ -55,7 +53,6 @@ my @testSets = (
comment => 'Admin sees offText, default call',
userId => 3,
adminStatus => 'on',
macroText => q!^AdminToggle();!,
onText => $i18n->get(516),
offText => $i18n->get(517),
template => q!!,
@ -66,7 +63,6 @@ my @testSets = (
comment => 'Admin sees onText, custom text',
userId => 3,
adminStatus => 'off',
macroText => q!^AdminToggle("%s","%s");!,
onText => 'Admin powers... Activate!',
offText => 'Chillin, dude',
template => q!!,
@ -77,7 +73,6 @@ my @testSets = (
comment => 'Admin sees offText, custom text',
userId => 3,
adminStatus => 'on',
macroText => q!^AdminToggle("%s","%s");!,
onText => 'Admin powers... Activate!',
offText => 'Chillin, dude',
template => q!!,
@ -88,7 +83,6 @@ my @testSets = (
comment => 'Admin sees onText, custom text and template',
userId => 3,
adminStatus => 'off',
macroText => q!^AdminToggle("%s","%s","%s");!,
onText => 'Admin powers... Activate!',
offText => 'Chillin, dude',
template => $template->get('url'),
@ -99,7 +93,6 @@ my @testSets = (
comment => 'Admin sees offText, custom text and template',
userId => 3,
adminStatus => 'on',
macroText => q!^AdminToggle("%s","%s","%s");!,
onText => 'Admin powers... Activate!',
offText => 'Chillin, dude',
template => $template->get('url'),