You are here

public function VariableSetTest::testStringKey in Drupal 7 to 8/9 Module Upgrader 8

File

tests/src/Unit/Plugin/DMU/Converter/Functions/VariableSetTest.php, line 54

Class

VariableSetTest
@group DMU.Converter.Functions @covers \Drupal\drupalmoduleupgrader\Plugin\DMU\Converter\Functions\VariableSet

Namespace

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

Code

public function testStringKey() {
  $function_call = Parser::parseExpression('variable_set("foo_wambooli", 30)');
  $rewritten = $this->plugin
    ->rewrite($function_call, $this->target);
  $this
    ->assertInstanceOf('\\Pharborist\\Objects\\ObjectMethodCallNode', $rewritten);
  $this
    ->assertEquals('\\Drupal::configFactory()->getEditable(\'foo.settings\')->set("foo_wambooli", 30)->save()', $rewritten
    ->getText());
}