You are here

public function FormatDateTest::providerTestDeprecatedTimezoneConfigurationKey in Drupal 8

Data provider for testDeprecatedTimezoneConfigurationKey.

File

core/modules/migrate/tests/src/Unit/process/FormatDateTest.php, line 97

Class

FormatDateTest
Tests the format date process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function providerTestDeprecatedTimezoneConfigurationKey() {
  return [
    [
      'configuration' => [
        'from_format' => 'Y-m-d\\TH:i:sO',
        'to_format' => 'c e',
        'timezone' => 'America/Managua',
      ],
      'value' => '2004-12-19T10:19:42-0600',
      'expected' => '2004-12-19T10:19:42-06:00 -06:00',
    ],
  ];
}