mirror of
https://github.com/jikan-me/jikan-rest.git
synced 2025-02-20 11:23:35 +08:00
19 lines
389 B
PHP
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'
|
|
]
|
|
]]);
|
|
}
|
|
}
|