mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
test: add more cases for checkout_box_description_test (#1639)
This commit is contained in:
parent
e0a392db00
commit
3eb1360324
@ -16,11 +16,15 @@ mod tests {
|
||||
// the checkout value will be checked if the value is "1", "true" or "yes"
|
||||
assert_checkbox(&type_option, "1", CHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "true", CHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "TRUE", CHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "yes", CHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "YES", CHECK, &field_type, &field_rev);
|
||||
|
||||
// the checkout value will be uncheck if the value is "false" or "No"
|
||||
assert_checkbox(&type_option, "false", UNCHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "No", UNCHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "NO", UNCHECK, &field_type, &field_rev);
|
||||
assert_checkbox(&type_option, "0", UNCHECK, &field_type, &field_rev);
|
||||
|
||||
// the checkout value will be empty if the value is letters or empty string
|
||||
assert_checkbox(&type_option, "abc", "", &field_type, &field_rev);
|
||||
|
Loading…
Reference in New Issue
Block a user