metatag.string_handling_with_i18n.test 723 B

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