You are here

function DatabaseUpdateTestCase::testWhereAndConditionUpdate in SimpleTest 7

Confirm that we can stack condition and where calls.

File

tests/database_test.test, line 730

Class

DatabaseUpdateTestCase
Update builder tests.

Code

function testWhereAndConditionUpdate() {
  $update = db_update('test')
    ->fields(array(
    'job' => 'Musician',
  ))
    ->where('age > :age', array(
    ':age' => 26,
  ))
    ->condition('name', 'Ringo');
  $num_updated = $update
    ->execute();
  $this
    ->assertIdentical($num_updated, 1, t('Updated 1 record.'));
  $num_matches = db_query('SELECT COUNT(*) FROM {test} WHERE job = :job', array(
    ':job' => 'Musician',
  ))
    ->fetchField();
  $this
    ->assertIdentical($num_matches, '1', t('Updated fields successfully.'));
}