mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 10:18:39 +00:00
36 lines
644 B
PHP
Executable File
36 lines
644 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Utils\Git;
|
|
|
|
use phpOMS\Utils\Git\Git;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Utils\Git\GitTest: Git utilities
|
|
*
|
|
* @internal
|
|
*/
|
|
final class GitTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The git path can be returned
|
|
* @covers phpOMS\Utils\Git\Git
|
|
* @group framework
|
|
*/
|
|
public function testBinary() : void
|
|
{
|
|
self::assertEquals('/usr/bin/git', Git::getBin());
|
|
}
|
|
}
|