Skip to content

Instantly share code, notes, and snippets.

@bryanveloso
Created July 19, 2012 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanveloso/3146734 to your computer and use it in GitHub Desktop.
Save bryanveloso/3146734 to your computer and use it in GitHub Desktop.
Love for reStructuredText.
import unittest

from fake_github_api_of_death import close_issue

class Highlighting(unittest.TestCase):

    def setUp(self):
        self.tagline = "HIGHLIGHT ALL OF THE REST CODE BLOCKS!?"

    def test_highlighting(self):
        self.assertTrue(rest_code_highlightining())
        print("http://cl.ly/ICZK")
        print("Yuuuuuuuuuup!")

    def tearDown(self):
        # Closes https://github.com/github/markup/pull/92/.
        close_issue('github/markup', 92)
        print("Python & reStructuredText, We love you. <3")

if __name__ = "__main__":
    unittest.main()

PS: Don't actually run this. xD

PPS: What? You ran it? Damnit, just be happy already! (╯°□°)╯︵ ┻━┻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment