laravel-nami-api/tests/Unit/PullGenderTest.php

33 lines
805 B
PHP
Raw Normal View History

2020-06-29 23:12:16 +02:00
<?php
namespace Zoomyboy\LaravelNami\Tests\Unit;
use Illuminate\Support\Facades\Config;
2022-02-18 18:29:02 +01:00
use Illuminate\Support\Facades\Http;
2020-06-29 23:12:16 +02:00
use Zoomyboy\LaravelNami\Group;
2022-02-18 18:29:02 +01:00
use Zoomyboy\LaravelNami\LoginException;
use Zoomyboy\LaravelNami\Nami;
use Zoomyboy\LaravelNami\NamiServiceProvider;
use Zoomyboy\LaravelNami\Tests\TestCase;
2020-06-29 23:12:16 +02:00
class PullGenderTest extends TestCase
{
2022-02-18 18:29:02 +01:00
public function test_get_all_genders(): void
{
Http::fake([
'https://nami.dpsg.de/ica/rest/baseadmin/geschlecht' => Http::response($this->fakeJson('genders.json'), 200)
]);
2020-06-29 23:12:16 +02:00
2022-02-18 18:29:02 +01:00
$genders = $this->login()->genders();
2020-06-29 23:12:16 +02:00
$this->assertEquals([
19 => 'Männlich',
20 => 'Weiblich'
2022-02-18 18:29:02 +01:00
], $genders->pluck('name', 'id')->toArray());
2020-06-29 23:12:16 +02:00
2022-02-18 18:29:02 +01:00
Http::assertSentCount(1);
2020-06-29 23:12:16 +02:00
}
}