Need to figure out why the Post data differs from what is specified on the command line.

This commit is contained in:
jgen 2014-02-22 19:10:18 -05:00
parent aca6caa91a
commit 8bbaf85114

View file

@ -58,6 +58,7 @@ class ShimmieInstallerTest extends WebTestCase {
$this->assertText("Database Install");
$this->setField("database_type", $db);
$this->assertField("database_type", $db);
$this->assertField("database_host", "localhost");
$this->setField("database_user", $username);
$this->setField("database_password", $password);
@ -65,6 +66,7 @@ class ShimmieInstallerTest extends WebTestCase {
$this->clickSubmit("Go!");
if (!$this->assertText("Installation Succeeded!")) {
print "ERROR --- '" + $db + "'";
$this->showSource();
}
}