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

class Mock_Database_Drivers_Sqlite 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_sqlite3_driver', $config);
	}
}