You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
793 B
PHP
29 lines
793 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Helpers;
|
|
|
|
use Engelsystem\Config\Config;
|
|
use Engelsystem\Helpers\Version;
|
|
use Engelsystem\Test\Unit\ServiceProviderTest;
|
|
|
|
class VersionTest extends ServiceProviderTest
|
|
{
|
|
/**
|
|
* @covers \Engelsystem\Helpers\Version::__construct
|
|
* @covers \Engelsystem\Helpers\Version::getVersion
|
|
*/
|
|
public function testGetVersion()
|
|
{
|
|
$config = new Config();
|
|
$version = new Version(__DIR__ . '/Stub', $config);
|
|
|
|
$this->assertEquals('n/a', $version->getVersion());
|
|
|
|
$version = new Version(__DIR__ . '/Stub/files', $config);
|
|
$this->assertEquals('0.42.0-testing', $version->getVersion());
|
|
|
|
$config->set('version', '1.2.3-dev');
|
|
$this->assertEquals('1.2.3-dev', $version->getVersion());
|
|
}
|
|
}
|