git @ Cat's Eye Technologies Feedmark / 6cee707
Remove test for --output-links. Chris Pressey 12 days ago
1 changed file(s) with 5 addition(s) and 21 deletion(s). Raw diff Collapse all Expand all
513513 )
514514 main(["foo.md", "--output-markdown"])
515515 data = sys.stdout.getvalue()
516 self.assertEqual(data, """\
516 self.assertEqual(
517 data,
518 """\
517519 Document
518520 ========
519521
524526 Have you heard?
525527 There are preformatted
526528 blocks in this section.
527 """)
529 """,
530 )
528531 os.unlink("foo.md")
529532
530533 def test_output_refdex(self):
641644 output,
642645 )
643646
644 def test_output_links(self):
645 main(["eg/Ill-formed Llama Sightings.md", "--output-links"])
646 data = json.loads(sys.stdout.getvalue())
647 self.assertEqual(
648 data,
649 [
650 {
651 "document": "Ill-formed Llama Sightings",
652 "name": "2 Llamas Spotted Near Mall",
653 "url": "TK",
654 },
655 {
656 "document": "Ill-formed Llama Sightings",
657 "section": "Definite llama sighting with no date",
658 "url": "https://tcrf.net/The_Cutting_Room_Floor",
659 },
660 ],
661 )
662
663647
664648 class TestFeedmarkInternals(unittest.TestCase):
665649