crunchbutton/travis/Tests/DatabaseTest.php
2014-04-07 13:31:15 -07:00

8 lines
207 B
PHP

<?php
class DatabaseTest extends PHPUnit_Framework_TestCase {
public function testDb() {
$c = c::db()->get('select * from config limit 1')->get(0);
$this->assertTrue($c->id_config ? true : false);
}
}