mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
17 lines
276 B
PHP
17 lines
276 B
PHP
<?php
|
|
|
|
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);
|
|
}
|
|
}
|