Inheritance: implements Cartalyst\Sentinel\Sessions\SessionInterface
Exemplo n.º 1
0
 public function testForget()
 {
     $session = new FuelPHPSession($store = m::mock('Fuel\\Core\\Session_Driver'), 'foo');
     $store->shouldReceive('delete')->with('foo')->once();
     $session->forget();
 }