public function testAddAuthor()
 {
     $handle = 'test';
     $author = new Author($handle);
     $this->registry->addAuthor($author);
     $this->assertSame($author, $this->registry->getAuthor($handle));
     $this->assertSame(array($author), $this->registry->getAuthors());
 }