mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
16 lines
242 B
PHP
16 lines
242 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
final class SettingsTest extends TestCase
|
|
{
|
|
public function test_setting_value(): void
|
|
{
|
|
$name = config('app.name');
|
|
|
|
$this->assertEquals('NNTmux', $name);
|
|
}
|
|
}
|