Split multiple authors on ','

This commit is contained in:
Ben Bridts 2014-02-18 17:56:57 +01:00
commit 05d357e98e
3 changed files with 8 additions and 2 deletions

View file

@ -361,7 +361,7 @@ class HTMLReaderTest(ReaderTest):
self.assertEqual(value, page.metadata[key], key)
def test_article_with_multiple_authors(self):
page = self.read_file(path='article_with_multiple_authors.rst')
page = self.read_file(path='article_with_multiple_authors.html')
expected = {
'authors': ['First Author', 'Second Author']
}