Source

						public function setUp() {
		$this->_configs = Connections::config();

		Connections::config(array('mock-source' => array(
			'type' => 'lithium\tests\mocks\data\MockSource'
		)));
		$model = 'lithium\tests\mocks\data\MockPost';
		$model::config(array('connection' => 'mock-source', 'key' => 'id'));
		$this->record = new Record(compact('model'));
	}