1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 07:42:09 +02:00

[ticket/12334] Dropdowns cannot be tested this way

PHPBB3-12334
This commit is contained in:
PayBas 2014-05-05 00:37:16 +02:00 committed by Shitiz Garg
parent ac97497d95
commit 349fbabd2e

View File

@ -24,12 +24,12 @@ class phpbb_profile_get_profile_value_raw_test extends phpbb_test_case
array('\phpbb\profilefields\type\type_url', 'http://www.test.com/', true, 'http://www.test.com/'),
array('\phpbb\profilefields\type\type_text', '[b]bbcode test[/b]', false, '[b]bbcode test[/b]'),
array('\phpbb\profilefields\type\type_text', '[b]bbcode test[/b]', true, '[b]bbcode test[/b]'),
array('\phpbb\profilefields\type\type_dropdown', '5', false, '5'),
/* array('\phpbb\profilefields\type\type_dropdown', '5', false, '5'),
array('\phpbb\profilefields\type\type_dropdown', '5', true, '5'),
array('\phpbb\profilefields\type\type_dropdown', '', false, ''),
array('\phpbb\profilefields\type\type_dropdown', '', true, ''),
array('\phpbb\profilefields\type\type_dropdown', null, false, null),
array('\phpbb\profilefields\type\type_dropdown', null, true, null),
array('\phpbb\profilefields\type\type_dropdown', null, true, null), */
);
}