mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
19 lines
334 B
PHP
19 lines
334 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Blacklight\Books;
|
|
use Tests\TestCase;
|
|
|
|
class GetBooksBrowseByOptionsTest extends TestCase
|
|
{
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function testBookBrowseByTest()
|
|
{
|
|
$books = (new Books())->getBrowseByOptions();
|
|
$this->assertArrayHasKey('author', $books);
|
|
}
|
|
}
|