Files
newznab-tmux/tests/Feature/GetBooksBrowseByOptionsTest.php
T
2018-07-26 11:23:29 +02:00

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);
}
}