2022-11-17 02:15:29 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Payment;
|
|
|
|
|
|
|
|
use App\Member\Member;
|
|
|
|
use App\Payment\MemberPaymentBlock;
|
|
|
|
use App\Payment\Payment;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
2022-11-17 02:23:46 +01:00
|
|
|
class MemberPaymentsBlockTest extends TestCase
|
2022-11-17 02:15:29 +01:00
|
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
|
|
|
public function testItHasData(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami();
|
|
|
|
|
|
|
|
Member::factory()
|
|
|
|
->defaults()
|
|
|
|
->has(Payment::factory()->notPaid()->subscription('example', 3400))
|
|
|
|
->create();
|
|
|
|
Member::factory()
|
|
|
|
->defaults()
|
|
|
|
->create();
|
|
|
|
|
2022-11-17 02:23:46 +01:00
|
|
|
$data = app(MemberPaymentBlock::class)->render()['data'];
|
2022-11-17 02:15:29 +01:00
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
'amount' => '34,00 €',
|
|
|
|
'members' => 1,
|
|
|
|
'total_members' => 2,
|
|
|
|
], $data);
|
|
|
|
}
|
|
|
|
}
|