Tweak fixtures loading
This commit is contained in:
parent
d4bd73d263
commit
8400ee2a5c
@ -48,8 +48,8 @@ class Fixture {
|
|||||||
{
|
{
|
||||||
$this->_assign_db();
|
$this->_assign_db();
|
||||||
|
|
||||||
$Q = TRUE;
|
//$Q = TRUE;
|
||||||
//$Q = $this->CI->db->simple_query('truncate table ' . $table . ';');
|
$Q = $this->CI->db->simple_query('TRUNCATE TABLE ' . $table . ' CASCADE;');
|
||||||
|
|
||||||
if (!$Q) {
|
if (!$Q) {
|
||||||
echo $this->CI->db->call_function('error', $this->CI->db->conn_id);
|
echo $this->CI->db->call_function('error', $this->CI->db->conn_id);
|
||||||
|
@ -4,6 +4,8 @@ class FriendModelTest extends Todo_TestCase {
|
|||||||
|
|
||||||
protected $tables = array(
|
protected $tables = array(
|
||||||
'todo_status' => 'todo_status',
|
'todo_status' => 'todo_status',
|
||||||
|
'todo_priority' => 'todo_priority',
|
||||||
|
'todo_user' => 'todo_user',
|
||||||
'todo_group' => 'todo_group',
|
'todo_group' => 'todo_group',
|
||||||
'todo_category' => 'todo_category',
|
'todo_category' => 'todo_category',
|
||||||
'todo_item' => 'todo_item',
|
'todo_item' => 'todo_item',
|
||||||
@ -16,13 +18,6 @@ class FriendModelTest extends Todo_TestCase {
|
|||||||
parent::setUp();
|
parent::setUp();
|
||||||
$this->CI->load->model('friend_model');
|
$this->CI->load->model('friend_model');
|
||||||
$this->create_session();
|
$this->create_session();
|
||||||
// Reset database data for each test
|
|
||||||
$this->dbfixt(
|
|
||||||
'todo_user',
|
|
||||||
'todo_group',
|
|
||||||
'todo_group_users_link',
|
|
||||||
'todo_user_friend_link'
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testGetFriends()
|
public function testGetFriends()
|
||||||
|
@ -9,7 +9,9 @@ class TaskModelTest extends Todo_TestCase {
|
|||||||
*/
|
*/
|
||||||
protected $tables = array(
|
protected $tables = array(
|
||||||
'todo_group' => 'todo_group',
|
'todo_group' => 'todo_group',
|
||||||
|
'todo_status' => 'todo_status',
|
||||||
'todo_category' => 'todo_category',
|
'todo_category' => 'todo_category',
|
||||||
|
'todo_priority' => 'todo_priority',
|
||||||
'todo_user' => 'todo_user',
|
'todo_user' => 'todo_user',
|
||||||
'todo_item' => 'todo_item',
|
'todo_item' => 'todo_item',
|
||||||
'todo_checklist' => 'todo_checklist',
|
'todo_checklist' => 'todo_checklist',
|
||||||
@ -18,7 +20,6 @@ class TaskModelTest extends Todo_TestCase {
|
|||||||
'todo_group_task_link' => 'todo_group_task_link',
|
'todo_group_task_link' => 'todo_group_task_link',
|
||||||
'todo_user_task_link' => 'todo_user_task_link',
|
'todo_user_task_link' => 'todo_user_task_link',
|
||||||
'todo_reminder' => 'todo_reminder',
|
'todo_reminder' => 'todo_reminder',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
public function setUp()
|
public function setUp()
|
||||||
|
Loading…
Reference in New Issue
Block a user