mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
23 lines
357 B
PHP
23 lines
357 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: darius
|
|
* Date: 24.1.19.
|
|
* Time: 11.41
|
|
*/
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Settings;
|
|
use Tests\TestCase;
|
|
|
|
class SettingsTest extends TestCase
|
|
{
|
|
public function testSettingValue()
|
|
{
|
|
$name = Settings::settingValue('site.main.title');
|
|
|
|
$this->assertEquals('NNTmux', $name);
|
|
}
|
|
}
|