You are here

public function DbUpdateTest::testSystemQuery in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/DbUpdateTest.php, line 20

Class

DbUpdateTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\DbUpdate

Namespace

Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\Functions

Code

public function testSystemQuery() {
  $function_call = Parser::parseExpression('db_update("system")');
  $rewritten = $this
    ->getPlugin()
    ->rewrite($function_call, $this->target);
  $this
    ->assertEquals(NULL, $rewritten);
}