1
0
Fork 0
MySQLDumper/tests/functional/controllers/InstallControllerTest.php
2011-06-10 21:55:32 +00:00

15 Zeilen
No EOL
401 B
PHP

<?php
/**
* @group Error
*/
class Msd_Application_Controller_InstallControllerTest
extends ControllerTestCase
{
public function testCanDispatchInstallPage()
{
$_GET['language'] = 'de';
$this->dispatch('/install/index');
$this->assertQueryContentContains('h3', 'Schritt 1: Sprache wählen (de)');
$this->assertQueryCount('input[@id="lang-de"]', 1);
}
}