public function AggregatorTestBase::getInvalidOpml in Drupal 8
Same name in this branch
- 8 core/modules/aggregator/src/Tests/AggregatorTestBase.php \Drupal\aggregator\Tests\AggregatorTestBase::getInvalidOpml()
- 8 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::getInvalidOpml()
Creates an invalid OPML file.
Return value
string Path to invalid OPML file.
File
- core/
modules/ aggregator/ src/ Tests/ AggregatorTestBase.php, line 308
Class
- AggregatorTestBase
- Defines a base class for testing the Aggregator module.
Namespace
Drupal\aggregator\TestsCode
public function getInvalidOpml() {
$opml = <<<EOF
<opml>
<invalid>
</opml>
EOF;
$path = 'public://invalid-opml.xml';
return \Drupal::service('file_system')
->saveData($opml, $path);
}