Skip to content

Commit

Permalink
LIMIT clause API code-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
toopay committed May 4, 2012
1 parent d2d329a commit be6fb42
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions tests/codeigniter/database/query_builder/limit_test.php
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']);
}
}

0 comments on commit be6fb42

Please sign in to comment.