Tests that calling `Media::type()` to retrieve the details of a type that is aliased to another type, automatically resolves to the settings of the type being pointed at.

Returns

void

Source

						public function testTypeAliasResolution() {
		$resolved = Media::type('text');
		$this->assertEqual('text/plain', $resolved['content']);
		unset($resolved['options']['encode']);

		$result = Media::type('txt');
		unset($result['options']['encode']);
		$this->assertEqual($resolved, $result);
	}