2018-12-27 12:48:02 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Common;
|
|
|
|
|
|
|
|
use Tests\Feature\FeatureTestCase;
|
|
|
|
|
|
|
|
class DashboardTest extends FeatureTestCase
|
|
|
|
{
|
|
|
|
public function testItShouldSeeDashboard()
|
|
|
|
{
|
|
|
|
$this->loginAs()
|
|
|
|
->get(url('/'))
|
|
|
|
->assertStatus(200)
|
|
|
|
->assertSeeText(trans('general.dashboard'));
|
|
|
|
}
|
2019-04-02 18:51:06 +03:00
|
|
|
}
|