blob: 2a9c8a91ee8a16d5c77f851c4cd6ac1a6caf05df [file] [log] [blame]
Taufan Aditya39f35fd2012-05-05 01:29:13 +07001<?php
2
3class Truncate_test extends CI_TestCase {
4
5 /**
6 * @var object Database/Query Builder holder
7 */
8 protected $db;
9
10 public function set_up()
11 {
12 $this->db = Mock_Database_Schema_Skeleton::init(DB_DRIVER);
13
14 Mock_Database_Schema_Skeleton::create_tables();
15 Mock_Database_Schema_Skeleton::create_data();
16 }
17
18 // ------------------------------------------------------------------------
19
20 /**
21 * @see ./mocks/schema/skeleton.php
22 */
23 public function test_truncate()
24 {
25 // Check initial record
26 $jobs = $this->db->get('job')->result_array();
27
28 $this->assertEquals(4, count($jobs));
29
30 // Do the empty
31 $this->db->truncate('job');
32
33 // Check the record
34 $jobs = $this->db->get('job');
35
36 $this->assertEmpty($jobs->result_array());
37 }
38
39 // ------------------------------------------------------------------------
40
41 /**
42 * @see ./mocks/schema/skeleton.php
43 */
44 public function test_truncate_with_from()
45 {
46 // Check initial record
47 $users = $this->db->get('user')->result_array();
48
49 $this->assertEquals(4, count($users));
50
51 // Do the empty
52 $this->db->from('user')
53 ->truncate();
54
55 // Check the record
56 $users = $this->db->get('user');
57
58 $this->assertEmpty($users->result_array());
59 }
60
61}