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()
Same name and namespace in other branches
- 9 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.
1 call to AggregatorTestBase::getInvalidOpml()
- ImportOpmlTest::submitImportForm in core/
modules/ aggregator/ tests/ src/ Functional/ ImportOpmlTest.php - Submits form with invalid, empty, and valid OPML files.
File
- core/
modules/ aggregator/ tests/ src/ Functional/ AggregatorTestBase.php, line 303
Class
- AggregatorTestBase
- Defines a base class for testing the Aggregator module.
Namespace
Drupal\Tests\aggregator\FunctionalCode
public function getInvalidOpml() {
$opml = <<<EOF
<opml>
<invalid>
</opml>
EOF;
$path = 'public://invalid-opml.xml';
return \Drupal::service('file_system')
->saveData($opml, $path);
}