public function testGetEmpty()
 {
     $this->driver->expects($this->at(0))->method('get')->with('foo')->will($this->returnValue(null));
     $this->driver->expects($this->at(1))->method('get')->with(Keeper::LAST_UPDATE_KEY)->will($this->returnValue($this->time));
     $this->assertEquals($this->time, $this->keeper->get('foo'));
 }