summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/database/query_builder/from_test.php
blob: 5a4ac690de6c6bc9fc7a2e1f099123354542bc06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

class From_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_from_simple()
	{
		$jobs = $this->db->from('job')
					->get()
					->result_array();

		$this->assertCount(4, $jobs);
	}

	// ------------------------------------------------------------------------

	/**
	 * @see ./mocks/schema/skeleton.php
	 */
	public function test_from_with_where()
	{
		$job1 = $this->db->from('job')
					->where('id', 1)
					->get()
					->row();

		$this->assertEquals('1', $job1->id);
		$this->assertEquals('Developer', $job1->name);
		$this->assertEquals('Awesome job, but sometimes makes you bored', $job1->description);
	}

}