Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Border/CustomExtensionGuesserTest.php
2015-06-15 19:30:51 +02:00

24 lines
536 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Border;
use Alchemy\Phrasea\Border\CustomExtensionGuesser;
/**
* @group functional
* @group legacy
*/
class CustomExtensionGuesserTest extends \PhraseanetTestCase
{
public function testGuess()
{
$conf = [
'mpeg' => 'video/x-romain-neutron',
];
$guesser = new CustomExtensionGuesser($conf);
$this->assertNull($guesser->guess(__FILE__));
$this->assertEquals('video/x-romain-neutron', $guesser->guess('/path/to/video.mpeg'));
}
}