function DatabaseUpdateTestCase::testSimpleUpdate in SimpleTest 7
Confirm that we can update a single record successfully.
File
- tests/
database_test.test, line 674
Class
- DatabaseUpdateTestCase
- Update builder tests.
Code
function testSimpleUpdate() {
$num_updated = db_update('test')
->fields(array(
'name' => 'Tiffany',
))
->condition('id', 1)
->execute();
$this
->assertIdentical($num_updated, 1, t('Updated 1 record.'));
$saved_name = db_query('SELECT name FROM {test} WHERE id = :id', array(
':id' => 1,
))
->fetchField();
$this
->assertIdentical($saved_name, 'Tiffany', t('Updated name successfully.'));
}