updated core

This commit is contained in:
Bachir Soussi Chiadmi
2018-01-24 13:36:32 +01:00
parent cd7dea45a9
commit f9374cf96d
1997 changed files with 5175 additions and 127715 deletions
@@ -8,8 +8,8 @@ dependencies:
- tracker
- views
# Information added by Drupal.org packaging script on 2017-11-03
version: '8.4.2'
# Information added by Drupal.org packaging script on 2018-01-03
version: '8.4.4'
core: '8.x'
project: 'drupal'
datestamp: 1509719929
datestamp: 1515021228
@@ -1,39 +0,0 @@
<?php
namespace Drupal\Tests\tracker\Unit\Plugin\migrate\source\d7;
use Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase;
/**
* Tests D7 tracker node source plugin.
*
* @group tracker
*/
class TrackerNodeTest extends MigrateSqlSourceTestCase {
const PLUGIN_CLASS = 'Drupal\tracker\Plugin\migrate\source\d7\TrackerNode';
protected $migrationConfiguration = [
'id' => 'test',
'source' => [
'plugin' => 'd7_tracker_node',
],
];
protected $expectedResults = [
[
'nid' => '2',
'published' => '1',
'changed' => '1421727536',
]
];
/**
* {@inheritdoc}
*/
protected function setUp() {
$this->databaseContents['tracker_node'] = $this->expectedResults;
parent::setUp();
}
}
@@ -1,40 +0,0 @@
<?php
namespace Drupal\Tests\tracker\Unit\Plugin\migrate\source\d7;
use Drupal\Tests\migrate\Unit\MigrateSqlSourceTestCase;
/**
* Tests D7 tracker user source plugin.
*
* @group tracker
*/
class TrackerUserTest extends MigrateSqlSourceTestCase {
const PLUGIN_CLASS = 'Drupal\tracker\Plugin\migrate\source\d7\TrackerUser';
protected $migrationConfiguration = [
'id' => 'test',
'source' => [
'plugin' => 'd7_tracker_user',
],
];
protected $expectedResults = [
[
'nid' => '1',
'uid' => '2',
'published' => '1',
'changed' => '1421727536',
]
];
/**
* {@inheritdoc}
*/
protected function setUp() {
$this->databaseContents['tracker_user'] = $this->expectedResults;
parent::setUp();
}
}