public function MetatagTagsTestBase::tagsInputOutputProvider in Metatag 8
Data provider for testTagsInputOutput.
Return value
array The set of tags to test.
File
- tests/
src/ Functional/ MetatagTagsTestBase.php, line 292
Class
- MetatagTagsTestBase
- Base class to test all of the meta tags that are in a specific module.
Namespace
Drupal\Tests\metatag\FunctionalCode
public function tagsInputOutputProvider() {
$set = [];
foreach ($this->tags as $tag) {
$set[$tag] = [
$tag,
];
}
return $set;
}