예제 #1
0
 def test_newlines(self):
     docstring = ("\n\n\nThis is a docstring with many new\n\nlines "
                  "followed by an avocado tag\n"
                  "\n\n:avocado: enable\n\n")
     self.assertIsNotNone(loader.get_docstring_tag(docstring))
예제 #2
0
 def test_newlines(self):
     docstring = ("\n\n\nThis is a docstring with many new\n\nlines "
                  "followed by an avocado tag\n"
                  "\n\n:avocado: enable\n\n")
     self.assertIsNotNone(loader.get_docstring_tag(docstring))
예제 #3
0
 def test_longline(self):
     docstring = ("This is a very long docstring in a single line. "
                  "Since we have nothing useful to put in here let's just "
                  "mention avocado: it's awesome, but that was not a tag. "
                  "a tag would be something line this: :avocado: enable")
     self.assertIsNotNone(loader.get_docstring_tag(docstring))
예제 #4
0
 def test_longline(self):
     docstring = ("This is a very long docstring in a single line. "
                  "Since we have nothing useful to put in here let's just "
                  "mention avocado: it's awesome, but that was not a tag. "
                  "a tag would be something line this: :avocado: enable")
     self.assertIsNotNone(loader.get_docstring_tag(docstring))