You are here

function DatabaseUpdateTestCase::testWhereUpdate in SimpleTest 7

Confirm that we can update a multiple records with a where call.

File

tests/database_test.test, line 716

Class

DatabaseUpdateTestCase
Update builder tests.

Code

function testWhereUpdate() {
  $num_updated = db_update('test')
    ->fields(array(
    'job' => 'Musician',
  ))
    ->where('age > :age', array(
    ':age' => 26,
  ))
    ->execute();
  $this
    ->assertIdentical($num_updated, 2, t('Updated 2 records.'));
  $num_matches = db_query('SELECT COUNT(*) FROM {test} WHERE job = :job', array(
    ':job' => 'Musician',
  ))
    ->fetchField();
  $this
    ->assertIdentical($num_matches, '2', t('Updated fields successfully.'));
}