feature/cierres (#25)
Varios cambios Co-authored-by: Juan Pablo Vial <jpvialb@incoviba.cl> Reviewed-on: #25
This commit is contained in:
14
app/tests/integration/HomeTest.php
Normal file
14
app/tests/integration/HomeTest.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
namespace Test\Integration;
|
||||
|
||||
use Tests\Extension\AbstractIntegration;
|
||||
|
||||
class HomeTest extends AbstractIntegration
|
||||
{
|
||||
public function testLoad(): void
|
||||
{
|
||||
$response = $this->client->get('/');
|
||||
$this->assertEquals(200, $response->getStatusCode());
|
||||
$this->assertStringContainsString('Incoviba', $response->getBody()->getContents());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user