mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-16 02:03:16 +05:30
7 lines
173 B
PHP
7 lines
173 B
PHP
<?php
|
|
$I = new ApiTester($scenario);
|
|
$I->wantTo('get all users without an access token');
|
|
$I->sendGET('api.php/users');
|
|
$I->seeResponseCodeIs(400);
|
|
$I->seeResponseIsJson();
|