Ejemplo n.º 1
0
 def test_parses_single_line_comments_with_metadata(self):
     metadata, comments = parse_metadata((
         (Comment, u'# !title: Django and SQLAlchemy'), (Text, u'\n'),
         (Comment, u'# !date: 2012-04-01 12:00'), (Text, u'\n'),
     ))
     self.assertEqual(metadata['title'], 'Django and SQLAlchemy')
     self.assertEqual(metadata['date'], '2012-04-01 12:00')
Ejemplo n.º 2
0
 def test_skips_comments_without_metadata(self):
     metadata, comments = parse_metadata((
         (Comment, u'# !title: Django and SQLAlchemy'), (Text, u'\n'),
         (Comment, u'# Just a code comment'), (Text, u'\n'), (Text, u'\n'),
         (Comment, u'# !date: 2012-04-01'), (Text, u'\n'), (Text, u'\n'),
     ))
     self.assertEqual(tuple(comments), (
         (Comment, u'# Just a code comment'), (Text, u'\n'), (Text, u'\n'),
     ))
Ejemplo n.º 3
0
 def test_parses_multi_line_comments_with_metadata(self):
     comment = (
         u'/*\n'
         u' *  !title: Simple Backbone.js App Structure\n'
         u' *  !tags: backbone, javascript\n'
         u' */'
     )
     metadata, comments = parse_metadata((
         (Comment, comment), (Text, u'\n'),
     ))
     self.assertEqual(metadata['title'], 'Simple Backbone.js App Structure')
     self.assertEqual(metadata['tags'], 'backbone, javascript')