mirror of
http://124.126.16.154:8888/singularity/hdk-skeleton.git
synced 2026-01-15 07:15:06 +08:00
10 lines
187 B
PHP
10 lines
187 B
PHP
<?php
|
|
|
|
test('example', function () {
|
|
$resp = $this->get('/');
|
|
expect($resp['code'])->toBe(200)
|
|
->and($resp['data'])->toBe([
|
|
'method' => 'GET',
|
|
]);
|
|
});
|