You are here

exif_functionaltests_with_locale.test in Exif 7

File

exif_functionaltests_with_locale.test
View source
<?php

include_once drupal_get_path('module', 'exif') . '/exif_functionaltests.php';
class TestsWithLocaleModuleActivatedTestCase extends ExifFunctionalTestCase {
  public function initModules() {
    return array(
      'exif',
      'date',
      'locale',
    );
  }
  public static function getInfo() {
    return array(
      'name' => 'Exif Interface Test with Locale module activated.',
      'description' => 'create node with exif metadata and ensure metadata is correctly calculated and displayed',
      'group' => 'Exif',
    );
  }

}