From 66a2ca892dfbf0336e97b4e97f2d8b01a163fdcc Mon Sep 17 00:00:00 2001 From: dereine <dereine@99340.no-reply.drupal.org> Date: Tue, 2 Oct 2012 12:23:17 -0400 Subject: [PATCH] Issue #1799746 by dawehner: Remove leftover UserTest.php. --- lib/Drupal/views/Tests/User/UserTest.php | 46 ------------------------ 1 file changed, 46 deletions(-) delete mode 100644 lib/Drupal/views/Tests/User/UserTest.php diff --git a/lib/Drupal/views/Tests/User/UserTest.php b/lib/Drupal/views/Tests/User/UserTest.php deleted file mode 100644 index e3a0348bc184..000000000000 --- a/lib/Drupal/views/Tests/User/UserTest.php +++ /dev/null @@ -1,46 +0,0 @@ -<?php - -/** - * @file - * Definition of Drupal\views\Tests\User\UserTest. - */ - -namespace Drupal\views\Tests\User; - -/** - * Tests basic user module integration into views. - */ -class UserTest extends UserTestBase { - - /** - * Users to use during this test. - * - * @var array - */ - protected $users = array(); - - /** - * Nodes to use during this test. - * - * @var array - */ - protected $nodes = array(); - - public static function getInfo() { - return array( - 'name' => 'User: Basic integration', - 'description' => 'Tests the integration of user.module.', - 'group' => 'Views Modules', - ); - } - - protected function setUp() { - parent::setUp(); - - $this->users[] = $this->drupalCreateUser(); - $this->users[] = user_load(1); - $this->nodes[] = $this->drupalCreateNode(array('uid' => $this->users[0]->uid)); - $this->nodes[] = $this->drupalCreateNode(array('uid' => 1)); - } - -} -- GitLab