| Current File : //home/strato/chroot/opt/RZphp80/includes/test/Console_Table/tests/no_rows.phpt |
--TEST--
Table without data
--FILE--
<?php
if (file_exists(dirname(__FILE__) . '/../Table.php')) {
require_once dirname(__FILE__) . '/../Table.php';
} else {
require_once 'Console/Table.php';
}
$table = new Console_Table();
$table->setHeaders(array('foo', 'bar'));
echo $table->getTable();
$table = new Console_Table();
echo $table->getTable();
?>
--EXPECT--
+-----+-----+
| foo | bar |
+-----+-----+
| | |
+-----+-----+