Attendize/tests/OrganiserCustomizeTest.php

29 lines
866 B
PHP
Raw Normal View History

<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use App\Models\Organiser;
class OrganiserCustomizeTest extends TestCase
{
/**
* @group passing
*/
public function test_customize_organiser_is_successful()
{
$organiser = factory(App\Models\Organiser::class)->create();
$this->actingAs($organiser)
->visit(route('showOrganiserCustomize', ['organiser_id' => $organiser->id]))
->type($this->faker->name, 'name')
->type($this->faker->email, 'email')
->type($this->faker->word, 'facebook')
->type($this->faker->word, 'twitter')
->press('Save Organiser')
->seeJson([
'status' => 'success'
]);
}
}