/** @test */
 final function the_caller_can_call_the_caller_trait_methods()
 {
     $this->caller->allow('create');
     $this->assertTrue($this->caller->can('create'));
     $this->caller->deny('create');
     $this->assertFalse($this->caller->can('create'));
     $this->caller->toggle('update');
     $this->assertTrue($this->caller->can('update'));
 }