summaryrefslogtreecommitdiffstats
path: root/tests/mocks/database/drivers/postgre.php
blob: 5a45115fa6a51f4a8ea858ece5d32400a173c750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

class Mock_Database_Drivers_Postgre extends Mock_Database_DB_Driver {

	/**
	 * Instantiate the database driver
	 *
	 * @param	string	DB Driver class name
	 * @param	array	DB configuration to set
	 * @return	void
	 */
	public function __construct($config = array())
	{
		parent::__construct('CI_DB_postgre_driver', $config);
	}

}