This commit is contained in:
2025-11-01 10:59:26 +01:00
parent f886f0f6c2
commit 56f97c77ea
14 changed files with 251 additions and 121 deletions

View File

@@ -41,10 +41,11 @@ final class ClaimSeasonCommandTest extends KernelTestCase
]);
$season = $this->seasonRepository->findOneBySeasonCode('krtek');
$this->assertInstanceOf(Season::class, $season);
$this->assertSame(Command::SUCCESS, $this->commandTester->getStatusCode());
$this->assertCount(1, $season->owners);
$this->assertCount(3, $season->owners);
}
public function testInvalidEmailFails(): void