szurubooru/tests/Helpers/ProgramExecutorTest.php

11 lines
282 B
PHP
Raw Normal View History

2014-09-20 18:30:48 +02:00
<?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'));
}
}