drupal-civicrm/vendor/pear/console_table/tests/no_header.phpt
2018-01-14 13:10:16 +00:00

22 lines
364 B
PHP

--TEST--
Table without header
--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->addData(array(array('foo', 'bar')));
echo $table->getTable();
?>
--EXPECT--
+-----+-----+
| foo | bar |
+-----+-----+