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