Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/PmaSeleniumLoginTest.php')
-rw-r--r--test/PmaSeleniumLoginTest.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/PmaSeleniumLoginTest.php b/test/PmaSeleniumLoginTest.php
deleted file mode 100644
index dad0f5fd2a..0000000000
--- a/test/PmaSeleniumLoginTest.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * Selenium TestCase for login related tests
- *
- * @version $Id$
- * @package phpMyAdmin-test
- */
-
-require_once('PmaSeleniumTestCase.php');
-
-
-class PmaSeleniumLoginTest extends PmaSeleniumTestCase
-{
- public function testLogin()
- {
- $this->doLogin();
- $this->assertRegExp("/phpMyAdmin .*-dev/", $this->getTitle());
- }
-}
-?>