drupal-civicrm/vendor/pear/console_table/tests/no_rows.phpt

26 lines
441 B
Plaintext
Raw Normal View History

2018-01-14 15:10:16 +02:00
--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 |
+-----+-----+
| | |
+-----+-----+