function DatabaseUpdateComplexTestCase::testNotInConditionUpdate

7.x database_test.test DatabaseUpdateComplexTestCase::testNotInConditionUpdate()

Test WHERE NOT IN clauses.

File

drupal-7.x/modules/simpletest/tests/database_test.test, line 936

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, 'Updated 1 record.');

  $num_matches = db_query('SELECT COUNT(*) FROM {test} WHERE job = :job', array(':job' => 'Musician'))->fetchField();
  $this->assertIdentical($num_matches, '1', 'Updated fields successfully.');
}