-
Notifications
You must be signed in to change notification settings - Fork 775
Expand file tree
/
Copy pathtest_docstring.py
More file actions
42 lines (29 loc) · 1.2 KB
/
test_docstring.py
File metadata and controls
42 lines (29 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
"""Test doc strings support."""
def test_doc_with_ctor():
from Python.Test import DocWithCtorTest
assert DocWithCtorTest.__doc__ == "DocWithCtorTest Class"
assert DocWithCtorTest.TestMethod.__doc__ == "DocWithCtorTest TestMethod"
assert (
DocWithCtorTest.StaticTestMethod.__doc__ == "DocWithCtorTest StaticTestMethod"
)
def test_doc_with_ctor_no_doc():
from Python.Test import DocWithCtorNoDocTest
assert DocWithCtorNoDocTest.__doc__ == "Void .ctor(Boolean)"
assert DocWithCtorNoDocTest.TestMethod.__doc__ == "Void TestMethod(Double, Int32)"
assert (
DocWithCtorNoDocTest.StaticTestMethod.__doc__
== "Void StaticTestMethod(Double, Int32)"
)
def test_doc_without_ctor():
from Python.Test import DocWithoutCtorTest
assert DocWithoutCtorTest.__doc__ == "DocWithoutCtorTest Class"
assert DocWithoutCtorTest.TestMethod.__doc__ == "DocWithoutCtorTest TestMethod"
assert (
DocWithoutCtorTest.StaticTestMethod.__doc__
== "DocWithoutCtorTest StaticTestMethod"
)
def test_doc_primitve():
from System import Int64, String
assert Int64.__doc__ is not None
assert String.__doc__ is not None