You are here

function AlterTest::testAlterRemoveRange in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Database/AlterTest.php \Drupal\system\Tests\Database\AlterTest::testAlterRemoveRange()

Tests that we can remove a range() value from a query.

This also tests hook_query_TAG_alter().

File

core/modules/system/src/Tests/Database/AlterTest.php, line 119
Contains \Drupal\system\Tests\Database\AlterTest.

Class

AlterTest
Tests the hook_query_alter capabilities of the Select builder.

Namespace

Drupal\system\Tests\Database

Code

function testAlterRemoveRange() {
  $query = db_select('test');
  $query
    ->addField('test', 'name');
  $query
    ->addField('test', 'age', 'age');
  $query
    ->range(0, 2);
  $query
    ->addTag('database_test_alter_remove_range');
  $num_records = count($query
    ->execute()
    ->fetchAll());
  $this
    ->assertEqual($num_records, 4, 'Returned the correct number of rows.');
}