function FieldCrudTestCase::testUpdateNonExistentField
Archivo
- drupal-7.x/
modules/ field/ tests/ field.test, line 2605 - Tests for field.module.
Class
Código
function testUpdateNonExistentField() {
$test_field = array(
'field_name' => 'does_not_exist',
'type' => 'number_decimal',
);
try {
field_update_field($test_field);
$this->fail(t('Cannot update a field that does not exist.'));
}
catch (FieldException $e) {
$this->pass(t('Cannot update a field that does not exist.'));
}
}