mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-16 02:03:16 +05:30
19 lines
517 B
PHP
19 lines
517 B
PHP
<?php
|
|
$I = new ApiTester($scenario);
|
|
$I->wantTo('get all users with all basic and email fields');
|
|
$I->sendGET('api.php/users?access_token=iamphil');
|
|
$I->seeResponseCodeIs(200);
|
|
$I->seeResponseIsJson();
|
|
$I->seeResponseContainsJson([
|
|
[
|
|
'username' => 'alexbilbie',
|
|
'name' => 'Alex Bilbie',
|
|
'email' => 'hello@alexbilbie.com'
|
|
],
|
|
[
|
|
'username' => 'philsturgeon',
|
|
'name' => 'Phil Sturgeon',
|
|
'email' => 'email@philsturgeon.co.uk'
|
|
]
|
|
]);
|