8 lines
207 B
PHP
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);
|
|
}
|
|
} |