minimal example of using [phantomjs] with [qunit]
$ phantomjs run-qunit.js file://`pwd`/test.html
'waitFor()' finished in 200ms.
Tests completed in 21 milliseconds.
5 tests of 5 passed, 0 failed.
<?php | |
/** | |
* Doctrine logger for FireBug | |
* | |
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL | |
* @author Magnus Andersson <[email protected]> | |
* @author Christoph Roensch | |
* | |
* @link https://gist.github.com/2917214 | |
*/ |
<?php | |
// Zend Framework Workaround | |
require_once('ZFWA\Db\Table\Row\Abstract.php'); | |
require_once('ZFWA\Db\Table\Select\ColumnsWithoutFrom.php'); | |
// That Table we want to start from | |
require_once('ThatTable.php'); | |
// init Table | |
$ThatTable = new ThatTable(); | |
// fetch Rowset/Row | |
$ThatRowset = $ThatTable->find(1); |