public function test_get_many()
 {
     $this->assertTrue($this->store->set('foo', 'bar'));
     $this->assertTrue($this->store->set('bat', 'baz'));
     $this->assertTrue($this->store->set('this', 'that'));
     $expected = array('foo' => 'bar', 'this' => 'that');
     $this->assertEquals($expected, $this->store->get_many(array('foo', 'this')));
 }