15 lines
339 B
PHP
15 lines
339 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
it('about page loads successfully', function () {
|
|
$this->get('/about')
|
|
->assertSuccessful()
|
|
->assertSee('Über B2in');
|
|
});
|
|
|
|
it('about page shows image break section', function () {
|
|
$this->get('/about')
|
|
->assertSuccessful()
|
|
->assertSee('best-of-two-worlds.jpg');
|
|
});
|