jikan-rest/tests/HttpV4/Controllers/MagazineControllerTest.php
2021-01-14 06:41:13 +05:00

19 lines
389 B
PHP

<?php
class MagazineControllerTest extends TestCase
{
public function testMagazinesListing()
{
$this->get('/v4/magazines')
->seeStatusCode(200)
->seeJsonStructure(['data'=>[
[
'mal_id',
'name',
'url',
'count'
]
]]);
}
}