Remove test for --output-links.
Chris Pressey
12 days ago
513 | 513 | ) |
514 | 514 | main(["foo.md", "--output-markdown"]) |
515 | 515 | data = sys.stdout.getvalue() |
516 | self.assertEqual(data, """\ | |
516 | self.assertEqual( | |
517 | data, | |
518 | """\ | |
517 | 519 | Document |
518 | 520 | ======== |
519 | 521 | |
524 | 526 | Have you heard? |
525 | 527 | There are preformatted |
526 | 528 | blocks in this section. |
527 | """) | |
529 | """, | |
530 | ) | |
528 | 531 | os.unlink("foo.md") |
529 | 532 | |
530 | 533 | def test_output_refdex(self): |
641 | 644 | output, |
642 | 645 | ) |
643 | 646 | |
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 | ||
663 | 647 | |
664 | 648 | class TestFeedmarkInternals(unittest.TestCase): |
665 | 649 |