actingAs(User::factory()->superuser()->create()) ->get(route('groups.create')) ->assertOk(); } public function testUserCanCreateGroup() { $this->assertFalse(Group::where('name', 'Test Group')->exists()); $this->actingAs(User::factory()->superuser()->create()) ->post(route('groups.store'), [ 'name' => 'Test Group', 'notes' => 'Test Note', ]) ->assertRedirect(route('groups.index')); $this->assertTrue(Group::where('name', 'Test Group')->where('notes', 'Test Note')->exists()); } }