Source

						public function testMergeEnsureDefaultFormat() {
		$item = array(
			'id' => 'test'
		);
		$expected = array(
			'test' => array(
				'id' => 'test',
				'ids' => array(),
				'translated' => null,
				'flags' => array(),
				'comments' => array(),
				'occurrences' => array()
		));
		$result = $this->adapter->merge(array(), $item);
		$this->assertEqual($expected, $result);
	}