This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
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'));
}
}