You are here

public function TestSubContext::escapeTextArguments in Panopoly 8.2

Same name and namespace in other branches
  1. 7 modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc \TestSubContext::escapeTextArguments()

Convert escaped characters in arguments.

@Transform :value @Transform :text

File

modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc, line 437
Provide Behat step-definitions for generic Panopoly tests.

Class

TestSubContext
Behat sub-context for Panopoly.

Code

public function escapeTextArguments($argument) {
  $argument = str_replace('\\"', '"', $argument);
  $argument = str_replace('\\n', "\n", $argument);
  return $argument;
}