Source

						public function testWriteMessageTemplateCompilesPot() {
		$data = array(
			'singular 1' => array(
				'id' => 'singular 1',
				'ids' => array('singular' => 'singular 1', 'plural' => null),
				'flags' => array(),
				'translated' => array(),
				'occurrences' => array(),
				'comments' => array()
			)
		);
		$this->adapter->write('messageTemplate', 'root', null, $data);
		$this->assertTrue(file_exists("{$this->_path}/message_default.pot"));
	}