From 566f76a6b082c9e0a85a1e7d8995f65b8a121b8c Mon Sep 17 00:00:00 2001 From: Shitiz Garg Date: Wed, 18 Jun 2014 14:37:13 +0530 Subject: [ticket/12514] Add a few additional tests for type_int PHPBB3-12514 --- tests/profilefields/type_int_test.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'tests/profilefields') diff --git a/tests/profilefields/type_int_test.php b/tests/profilefields/type_int_test.php index a12909722a..11278e8f52 100644 --- a/tests/profilefields/type_int_test.php +++ b/tests/profilefields/type_int_test.php @@ -136,6 +136,24 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case 'FIELD_TOO_SMALL-10-field', 'Field should reject value which is less than defined minimum', ), + array( + true, + array('field_maxlen' => 20), + false, + 'Field should accept correct boolean value', + ), + array( + 'string', + array('field_maxlen' => 10, 'field_required' => true), + false, + 'Field should accept correct string value', + ), + array( + null, + array('field_minlen' => 1, 'field_maxlen' => 10, 'field_required' => true), + 'FIELD_TOO_SMALL-1-field', + 'Field should not accept an empty value', + ), ); } -- cgit v1.2.1