forked from bcit-ci/CodeIgniter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?php | ||
|
||
class Limit_test extends CI_TestCase { | ||
|
||
/** | ||
* @var object Database/Query Builder holder | ||
*/ | ||
protected $db; | ||
|
||
public function set_up() | ||
{ | ||
$this->db = Mock_Database_Schema_Skeleton::init(DB_DRIVER); | ||
|
||
Mock_Database_Schema_Skeleton::create_tables(); | ||
Mock_Database_Schema_Skeleton::create_data(); | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
|
||
/** | ||
* @see ./mocks/schema/skeleton.php | ||
*/ | ||
public function test_limit() | ||
{ | ||
$jobs = $this->db->limit(2) | ||
->get('job') | ||
->result_array(); | ||
|
||
// Check the result | ||
$this->assertEquals(2, count($jobs)); | ||
} | ||
|
||
// ------------------------------------------------------------------------ | ||
|
||
/** | ||
* @see ./mocks/schema/skeleton.php | ||
*/ | ||
public function test_limit_and_offset() | ||
{ | ||
$jobs = $this->db->limit(2, 2) | ||
->get('job') | ||
->result_array(); | ||
|
||
// Check the result | ||
$this->assertEquals(2, count($jobs)); | ||
$this->assertEquals('Accountant', $jobs[0]['name']); | ||
$this->assertEquals('Musician', $jobs[1]['name']); | ||
} | ||
} |