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