public function DbDeleteTest::testRewriteQuery in Drupal 7 to 8/9 Module Upgrader 8
File
- tests/
src/ Unit/ Plugin/ DMU/ Converter/ Functions/ DbDeleteTest.php, line 13
Class
- DbDeleteTest
- @group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\DbDelete
Namespace
Drupal\Tests\drupalmoduleupgrader\Unit\Plugin\DMU\Converter\FunctionsCode
public function testRewriteQuery() {
$function_call = Parser::parseExpression('db_delete("foo")');
$rewritten = $this
->getPlugin()
->rewrite($function_call, $this->target);
$this
->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
$this
->assertEquals('\\Drupal::database()->delete("foo")', $rewritten
->getText());
}