public function testLocking() {
$req = Request::create('/test', 'get', array(), array(), array(), array(
'HTTP_FOO' => 'Foo',
'HTTP_BAR' => 'Bar',
));
$this
->assertTrue($this->store
->lock($req));
$path = $this->store
->lock($req);
$this
->assertTrue($this->store
->isLocked($req));
$this->store
->unlock($req);
$this
->assertFalse($this->store
->isLocked($req));
}