szurubooru/tests/Helpers/ProgramExecutorTest.php
2014-10-18 18:48:26 +02:00

10 lines
282 B
PHP

<?php
namespace Szurubooru\Tests;
class ProgramExecutorTest extends \Szurubooru\Tests\AbstractTestCase
{
public function testIsProgramAvailable()
{
$this->assertFalse(\Szurubooru\Helpers\ProgramExecutor::isProgramAvailable('there_is_no_way_my_os_can_have_this_program'));
}
}