You are here

function i18n_API_Tests::setUp in Internationalization 6

Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix. A temporary files directory is created with the same name as the database prefix.

Parameters

...: List of modules to enable for the duration of the test.

Overrides Drupali18nTestCase::setUp

File

tests/i18n_api.test, line 20

Class

i18n_API_Tests

Code

function setUp() {
  parent::setUp('i18n', 'locale');
  $this
    ->addLanguage('es');
  $this
    ->addLanguage('de');

  // A language with two letter code may help too
  $this
    ->addLanguage('pt-br');

  //variable_set('i18n_variables', array('site_name','site_frontpage',));

  // Log in user with access content permission
  $user = $this
    ->drupalCreateUser(array(
    'access comments',
    'access content',
  ));
  $this
    ->drupalLogin($user);
}