metatag.string_handling_with_i18n.test 633 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Tests for Metatag's string handling when the i18n module is enabled.
  4. */
  5. class MetatagCoreStringHandlingWithI18nTest extends MetatagCoreStringHandlingTest {
  6. /**
  7. * {@inheritdoc}
  8. */
  9. public static function getInfo() {
  10. return array(
  11. 'name' => 'Metatag core tests for string handling w i18n',
  12. 'description' => "Tests Metatag's string handling when i18n is enabled.",
  13. 'group' => 'Metatag',
  14. 'dependencies' => array('ctools', 'token', 'i18n'),
  15. );
  16. }
  17. /**
  18. * {@inheritdoc}
  19. */
  20. function setUp(array $modules = array()) {
  21. parent::setUp(array('i18n', 'i18n_string'));
  22. }
  23. }