function test_queue_is_persisted()
 {
     $other_queue = new Jetpack_Sync_Queue($this->queue->id);
     $this->queue->add('foo');
     $this->assertEquals(array('foo'), $other_queue->checkout(5)->get_item_values());
 }