Skip to content

Commit

Permalink
Test updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-eremin committed Jan 10, 2017
1 parent fc7634f commit a7642c6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/comments.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
"""Documentation comments test"""

class Animal:
"""Class-level docstring"""
pass

def foo():
"""Function-level docstring"""
pass

name = "John Parrish"

print(name)
print("Hello!")
1 change: 1 addition & 0 deletions tests/comments.py.expected
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
John Parrish
Hello!

0 comments on commit a7642c6

Please sign in to comment.