summaryrefslogtreecommitdiffstats
path: root/tests/mocks/core/loader.php
blob: 7ea4da369d5673c904e9d9c1eda076d0eb5f4431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class Mock_Core_Loader extends CI_Loader {

	/**
	 * Give public access to _ci_autoloader for testing
	 */
	public function autoload()
	{
		$this->_ci_autoloader();
	}

}