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

19 lines
334 B
PHP

<?php
namespace Tests\Feature;
use Tests\TestCase;
use Blacklight\Books;
class GetBooksBrowseByOptionsTest extends TestCase
{
/**
* @throws \Exception
*/
public function testBookBrowseByTest()
{
$books = (new Books())->getBrowseByOptions();
$this->assertArrayHasKey('author', $books);
}
}