put() public method

{@inheritDoc}
public put ( $value )
 public function testPut()
 {
     $session = new CISession($store = m::mock('CI_Session'), 'foo');
     $store->shouldReceive('set_userdata')->with('foo', serialize('bar'))->once();
     $session->put('bar');
 }