TrackerNodeTest.php in Drupal 8
File
core/modules/tracker/tests/src/Kernel/Plugin/migrate/source/d7/TrackerNodeTest.php
View source
<?php
namespace Drupal\Tests\tracker\Kernel\Plugin\migrate\source\d7;
use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
class TrackerNodeTest extends MigrateSqlSourceTestBase {
public static $modules = [
'tracker',
'migrate_drupal',
];
public function providerSource() {
$tests = [];
$tests[0]['database']['tracker_node'] = [
[
'nid' => '2',
'published' => '1',
'changed' => '1421727536',
],
];
$tests[0]['expected_results'] = $tests[0]['database']['tracker_node'];
return $tests;
}
}