Files
newznab-tmux/tests/Feature/SettingsTest.php
T
2019-05-07 20:56:19 +02:00

17 lines
276 B
PHP

<?php
namespace Tests\Feature;
use Tests\TestCase;
use App\Models\Settings;
class SettingsTest extends TestCase
{
public function testSettingValue()
{
$name = Settings::settingValue('site.main.title');
$this->assertEquals('NNTmux', $name);
}
}