mirror of
https://gh.wpcy.net/https://github.com/fairpm/aspirecloud.git
synced 2026-06-20 02:22:28 +08:00
13 lines
354 B
PHP
13 lines
354 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
it('shows importer list', function () {
|
|
$this
|
|
->get('/core/importers/1.1')
|
|
->assertStatus(200)
|
|
->assertJsonStructure([
|
|
'importers' => ['*' => ['description', 'importer-id', 'name', 'plugin-slug']],
|
|
'translated',
|
|
])
|
|
->assertJsonCount(8, 'importers');
|
|
});
|