crunchbutton/travis/Tests/DatabaseTest.php
2016-11-02 17:25:20 -02: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);
}
}