You are here

function DatabaseUpdateComplexTestCase::testNotInConditionUpdate in SimpleTest 7

Test WHERE NOT IN clauses.

File

tests/database_test.test, line 791

Class

DatabaseUpdateComplexTestCase
Tests for more complex update statements.

Code

function testNotInConditionUpdate() {

  // The o is lowercase in the 'NoT IN' operator, to make sure the operators
  // work in mixed case.
  $num_updated = db_update('test')
    ->fields(array(
    'job' => 'Musician',
  ))
    ->condition('name', array(
    'John',
    'Paul',
    'George',
  ), 'NoT IN')
    ->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.'));
}