forked from PyCQA/docformatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_docformatter.py
executable file
·1480 lines (1249 loc) · 40.5 KB
/
test_docformatter.py
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env python
"""Test suite for docformatter."""
from __future__ import (absolute_import,
division,
print_function,
unicode_literals)
import contextlib
import io
import os
import random
import shutil
import string
import subprocess
import sys
import tempfile
import unittest
import docformatter
ROOT_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
if (
'DOCFORMATTER_COVERAGE' in os.environ and
int(os.environ['DOCFORMATTER_COVERAGE'])
):
DOCFORMATTER_COMMAND = ['coverage', 'run', '--branch', '--parallel',
'--omit=*/site-packages/*',
os.path.join(ROOT_DIRECTORY, 'docformatter.py')]
else:
# We need to specify the executable to make sure the correct Python
# interpreter gets used.
DOCFORMATTER_COMMAND = [sys.executable,
os.path.join(
ROOT_DIRECTORY,
'docformatter.py')] # pragma: no cover
class TestUnits(unittest.TestCase):
def test_strip_docstring(self):
self.assertEqual(
'Hello.',
docformatter.strip_docstring('''
"""Hello.
"""
'''))
def test_strip_docstring_with_single_quotes(self):
self.assertEqual(
'Hello.',
docformatter.strip_docstring("""
'''Hello.
'''
"""))
def test_strip_docstring_with_empty_string(self):
self.assertEqual('', docformatter.strip_docstring('""""""'))
def test_strip_docstring_with_escaped_quotes(self):
self.assertEqual("hello\\'",
docformatter.strip_docstring("'hello\\''"))
def test_strip_docstring_with_escaped_double_quotes(self):
self.assertEqual('hello\\"',
docformatter.strip_docstring('"hello\\""'))
def test_strip_docstring_with_unhandled(self):
with self.assertRaises(ValueError):
docformatter.strip_docstring('r"""foo"""')
def test_strip_docstring_with_unknown(self):
with self.assertRaises(ValueError):
docformatter.strip_docstring('foo')
def test_format_docstring(self):
self.assertEqual('"""Hello."""',
docformatter.format_docstring(' ', '''
"""
Hello.
"""
'''.strip()))
def test_format_docstring_with_summary_that_ends_in_quote(self):
self.assertEqual('''""""Hello"."""''',
docformatter.format_docstring(' ', '''
"""
"Hello"
"""
'''.strip()))
def test_format_docstring_with_bad_indentation(self):
self.assertEqual('''"""Hello.
This should be indented but it is not. The
next line should be indented too. And
this too.
"""''',
docformatter.format_docstring(' ', '''
"""Hello.
This should be indented but it is not. The
next line should be indented too. And
this too.
"""
'''.strip()))
def test_format_docstring_with_too_much_indentation(self):
self.assertEqual('''"""Hello.
This should be dedented.
1. This too.
2. And this.
3. And this.
"""''',
docformatter.format_docstring(' ', '''
"""Hello.
This should be dedented.
1. This too.
2. And this.
3. And this.
"""
'''.strip()))
def test_format_docstring_with_description_wrapping(self):
self.assertEqual('''"""Hello.
This should be indented but it is not. The next line should be
indented too. But this is okay.
"""''',
docformatter.format_docstring(' ', '''
"""Hello.
This should be indented but it is not. The
next line should be indented too. But
this is okay.
"""
'''.strip(), description_wrap_length=72))
def test_format_docstring_should_ignore_doctests(self):
docstring = '''"""Hello.
>>> 4
4
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_should_ignore_doctests_in_summary(self):
docstring = '''"""
>>> 4
4
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_should_maintain_indentation_of_doctest(self):
self.assertEqual(
'''"""Foo bar bing bang.
>>> tests = DocTestFinder().find(_TestClass)
>>> runner = DocTestRunner(verbose=False)
>>> tests.sort(key = lambda test: test.name)
"""''',
docformatter.format_docstring(
' ',
docstring='''"""Foo bar
bing bang.
>>> tests = DocTestFinder().find(_TestClass)
>>> runner = DocTestRunner(verbose=False)
>>> tests.sort(key = lambda test: test.name)
"""''',
description_wrap_length=72))
def test_format_docstring_should_ignore_numbered_lists(self):
docstring = '''"""Hello.
1. This should be indented but it is not. The
next line should be indented too. But
this is okay.
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_should_ignore_parameter_lists(self):
docstring = '''"""Hello.
foo - This is a foo. This is a foo. This is a foo. This is a foo. This is.
bar - This is a bar. This is a bar. This is a bar. This is a bar. This is.
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_should_ignore__colon_parameter_lists(self):
docstring = '''"""Hello.
foo: This is a foo. This is a foo. This is a foo. This is a foo. This is.
bar: This is a bar. This is a bar. This is a bar. This is a bar. This is.
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_should_ignore_multi_paragraph(self):
docstring = '''"""Hello.
This should be indented but it is not. The
next line should be indented too. But
this is okay.
This should be indented but it is not. The
next line should be indented too. But
this is okay.
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ',
docstring,
description_wrap_length=72))
def test_format_docstring_with_trailing_whitespace(self):
self.assertEqual('''"""Hello.
This should be not have trailing whitespace. The
next line should not have trailing whitespace either.
"""''',
docformatter.format_docstring(' ', '''
"""Hello.\t
\t
This should be not have trailing whitespace. The\t\t\t
next line should not have trailing whitespace either.\t
\t
"""
'''.strip()))
def test_format_docstring_with_no_post_description_blank(self):
self.assertEqual('''"""Hello.
Description.
"""''',
docformatter.format_docstring(' ', '''
"""
Hello.
Description.
"""
'''.strip(), post_description_blank=False))
def test_format_docstring_with_pre_summary_newline(self):
self.assertEqual('''"""
Hello.
Description.
"""''',
docformatter.format_docstring(' ', '''
"""
Hello.
Description.
"""
'''.strip(), pre_summary_newline=True))
def test_format_docstring_with_empty_docstring(self):
self.assertEqual('""""""',
docformatter.format_docstring(' ', '""""""'))
def test_format_docstring_with_no_period(self):
self.assertEqual('"""Hello."""',
docformatter.format_docstring(' ', '''
"""
Hello
"""
'''.strip()))
def test_format_docstring_with_single_quotes(self):
self.assertEqual('"""Hello."""',
docformatter.format_docstring(' ', """
'''
Hello.
'''
""".strip()))
def test_format_docstring_with_single_quotes_multi_line(self):
self.assertEqual('''
"""Return x factorial.
This uses math.factorial.
"""
'''.strip(),
docformatter.format_docstring(' ', """
'''
Return x factorial.
This uses math.factorial.
'''
""".strip()))
def test_format_docstring_with_wrap(self):
# This function uses `random` so make sure each run of this test is
# repeatable.
random.seed(0)
min_line_length = 50
for max_length in range(min_line_length, 100):
for num_indents in range(0, 20):
indentation = ' ' * num_indents
formatted_text = indentation + docformatter.format_docstring(
indentation=indentation,
docstring=generate_random_docstring(
max_word_length=min_line_length // 2),
summary_wrap_length=max_length)
for line in formatted_text.split('\n'):
# It is not the formatter's fault if a word is too long to
# wrap.
if len(line.split()) > 1:
self.assertLessEqual(len(line), max_length)
def test_format_docstring_with_weird_indentation_and_punctuation(self):
self.assertEqual('''
"""Creates and returns four was awakens to was created tracked ammonites
was the fifty, arithmetical four was pyrotechnic to pyrotechnic physicists.
`four' falsified x falsified ammonites
to awakens to. `created' to ancestor was four to x dynamo to was
four ancestor to physicists().
"""
'''.strip(),
docformatter.format_docstring(' ', '''
"""Creates and returns four was awakens to was created tracked
ammonites was the fifty, arithmetical four was pyrotechnic to
pyrotechnic physicists. `four' falsified x falsified ammonites
to awakens to. `created' to ancestor was four to x dynamo to was
four ancestor to physicists().
"""
'''.strip(), summary_wrap_length=79))
def test_format_docstring_should_leave_list_alone(self):
docstring = '''"""
one
two
three
four
five
six
seven
eight
nine
ten
eleven
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ', docstring))
def test_format_docstring_should_underlined_summaries_alone(self):
docstring = '''"""
Foo bar
-------
This is more.
"""'''
self.assertEqual(
docstring,
docformatter.format_docstring(' ', docstring))
def test_format_code(self):
self.assertEqual(
'''\
def foo():
"""Hello foo."""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello foo.
"""
'''))
def test_format_code_range_miss(self):
self.assertEqual('''\
def f(x):
""" This is a docstring. That should be on more lines"""
pass
def g(x):
""" Badly indented docstring"""
pass''',
docformatter.format_code('''\
def f(x):
""" This is a docstring. That should be on more lines"""
pass
def g(x):
""" Badly indented docstring"""
pass''', line_range=[1, 1]))
def test_format_code_range_hit(self):
self.assertEqual('''\
def f(x):
"""This is a docstring.
That should be on more lines
"""
pass
def g(x):
""" Badly indented docstring"""
pass''',
docformatter.format_code('''\
def f(x):
""" This is a docstring. That should be on more lines"""
pass
def g(x):
""" Badly indented docstring"""
pass''', line_range=[1, 2]))
def test_format_code_with_module_docstring(self):
self.assertEqual(
'''\
#!/usr/env/bin python
"""This is a module docstring.
1. One
2. Two
"""
"""But
this
is
not."""
''',
docformatter.format_code(
'''\
#!/usr/env/bin python
"""This is
a module
docstring.
1. One
2. Two
"""
"""But
this
is
not."""
'''))
def test_format_code_should_ignore_non_docstring(self):
source = '''\
x = """This
is
not."""
'''
self.assertEqual(
source,
docformatter.format_code(source))
def test_format_code_with_empty_string(self):
self.assertEqual(
'',
docformatter.format_code(''))
def test_format_code_with_tabs(self):
self.assertEqual(
'''\
def foo():
\t"""Hello foo."""
\tif True:
\t\tx = 1
''',
docformatter.format_code(
'''\
def foo():
\t"""
\tHello foo.
\t"""
\tif True:
\t\tx = 1
'''))
def test_format_code_with_mixed_tabs(self):
self.assertEqual(
'''\
def foo():
\t"""Hello foo."""
\tif True:
\t x = 1
''',
docformatter.format_code(
'''\
def foo():
\t"""
\tHello foo.
\t"""
\tif True:
\t x = 1
'''))
def test_format_code_with_escaped_newlines(self):
self.assertEqual(
r'''def foo():
"""Hello foo."""
x = \
1
''',
docformatter.format_code(
r'''def foo():
"""
Hello foo.
"""
x = \
1
'''))
def test_format_code_with_comments(self):
self.assertEqual(
r'''
def foo():
"""Hello foo."""
# My comment
# My comment with escape \
123
'''.lstrip(),
docformatter.format_code(
r'''
def foo():
"""
Hello foo.
"""
# My comment
# My comment with escape \
123
'''.lstrip()))
def test_format_code_with_escaped_newline_in_inline_comment(self):
self.assertEqual(
r'''
def foo():
"""Hello foo."""
def test_method_no_chr_92(): the501(92) # \
'''.lstrip(),
docformatter.format_code(
r'''
def foo():
"""
Hello foo.
"""
def test_method_no_chr_92(): the501(92) # \
'''.lstrip()))
def test_format_code_skip_complex(self):
"""We do not handle r/u/b prefixed strings."""
self.assertEqual(
'''\
def foo():
r"""
Hello foo.
"""
''',
docformatter.format_code(
'''\
def foo():
r"""
Hello foo.
"""
'''))
def test_format_code_skip_complex_single(self):
"""We do not handle r/u/b prefixed strings."""
self.assertEqual(
"""\
def foo():
r'''
Hello foo.
'''
""",
docformatter.format_code(
"""\
def foo():
r'''
Hello foo.
'''
"""))
def test_format_code_skip_nested(self):
code = """\
def foo():
'''Hello foo. \"\"\"abc\"\"\"
'''
"""
self.assertEqual(code, docformatter.format_code(code))
def test_format_code_with_multiple_sentences(self):
self.assertEqual(
'''\
def foo():
"""Hello foo.
This is a docstring.
"""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello foo.
This is a docstring.
"""
'''))
def test_format_code_with_multiple_sentences_same_line(self):
self.assertEqual(
'''\
def foo():
"""Hello foo.
This is a docstring.
"""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello foo. This is a docstring.
"""
'''))
def test_format_code_with_multiple_sentences_multi_line_summary(self):
self.assertEqual(
'''\
def foo():
"""Hello foo.
This is a docstring.
"""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello
foo. This is a docstring.
"""
'''))
def test_format_code_with_empty_lines(self):
self.assertEqual(
'''\
def foo():
"""Hello foo and this is a docstring.
More stuff.
"""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello
foo and this is a docstring.
More stuff.
"""
'''))
def test_format_code_with_trailing_whitespace(self):
self.assertEqual(
'''\
def foo():
"""Hello foo and this is a docstring.
More stuff.
"""
''',
docformatter.format_code(
('''\
def foo():
"""
Hello
foo and this is a docstring.\t
More stuff.\t
"""
''')))
def test_format_code_with_parameters_list(self):
self.assertEqual(
'''\
def foo():
"""Test.
one - first
two - second
"""
''',
docformatter.format_code(
('''\
def foo():
"""Test
one - first
two - second
"""
''')))
def test_format_code_with_double_quote(self):
self.assertEqual(
'''\
def foo():
"""Just a regular string."""
''',
docformatter.format_code(
'''\
def foo():
"Just a regular string"
'''))
def test_format_code_with_single_quote(self):
self.assertEqual(
'''\
def foo():
"""Just a regular string."""
''',
docformatter.format_code(
'''\
def foo():
'Just a regular string'
'''))
def test_format_code_with_should_skip_nested_triple_quotes(self):
line = '''\
def foo():
'Just a """foo""" string'
'''
self.assertEqual(line, docformatter.format_code(line))
def test_format_code_with_assignment_on_first_line(self):
self.assertEqual(
'''\
def foo():
x = """Just a regular string. Alpha."""
''',
docformatter.format_code(
'''\
def foo():
x = """Just a regular string. Alpha."""
'''))
def test_format_code_with_regular_strings_too(self):
self.assertEqual(
'''\
def foo():
"""Hello foo and this is a docstring.
More stuff.
"""
x = """My non-docstring
This should not touched."""
"""More stuff
that should not be
touched\t"""
''',
docformatter.format_code(
'''\
def foo():
"""
Hello
foo and this is a docstring.
More stuff.
"""
x = """My non-docstring
This should not touched."""
"""More stuff
that should not be
touched\t"""
'''))
def test_format_code_with_syntax_error(self):
self.assertEqual('"""\n',
docformatter.format_code('"""\n'))
def test_format_code_with_syntax_error_case_slash_r(self):
self.assertEqual('"""\r',
docformatter.format_code('"""\r'))
def test_format_code_with_syntax_error_case_slash_r_slash_n(self):
self.assertEqual('"""\r\n',
docformatter.format_code('"""\r\n'))
def test_find_newline_only_cr(self):
source = ['print 1\r', 'print 2\r', 'print3\r']
self.assertEqual(docformatter.CR, docformatter.find_newline(source))
def test_find_newline_only_lf(self):
source = ['print 1\n', 'print 2\n', 'print3\n']
self.assertEqual(docformatter.LF, docformatter.find_newline(source))
def test_find_newline_only_crlf(self):
source = ['print 1\r\n', 'print 2\r\n', 'print3\r\n']
self.assertEqual(docformatter.CRLF, docformatter.find_newline(source))
def test_find_newline_cr1_and_lf2(self):
source = ['print 1\n', 'print 2\r', 'print3\n']
self.assertEqual(docformatter.LF, docformatter.find_newline(source))
def test_find_newline_cr1_and_crlf2(self):
source = ['print 1\r\n', 'print 2\r', 'print3\r\n']
self.assertEqual(docformatter.CRLF, docformatter.find_newline(source))
def test_find_newline_should_default_to_lf(self):
self.assertEqual(docformatter.LF, docformatter.find_newline([]))
self.assertEqual(docformatter.LF, docformatter.find_newline(['', '']))
def test_format_code_dominant_line_ending_style_preserved(self):
input = '''\
def foo():\r
"""\r
Hello\r
foo. This is a docstring.\r
"""\r
'''
self.assertEqual(docformatter.CRLF, docformatter.find_newline(input.splitlines(True)))
self.assertEqual(
'''\
def foo():\r
"""Hello foo.\r
\r
This is a docstring.\r
"""\r
''',
docformatter.format_code(input))
def test_split_summary_and_description(self):
self.assertEqual(
('This is the first.',
'This is the second. This is the third.'),
docformatter.split_summary_and_description(
'This is the first. This is the second. This is the third.'))
def test_split_summary_and_description_complex(self):
self.assertEqual(
('This is the first',
'\nThis is the second. This is the third.'),
docformatter.split_summary_and_description(
'This is the first\n\nThis is the second. This is the third.'))
def test_split_summary_and_description_more_complex(self):
self.assertEqual(
('This is the first.',
'This is the second. This is the third.'),
docformatter.split_summary_and_description(
'This is the first.\nThis is the second. This is the third.'))
def test_split_summary_and_description_with_list(self):
self.assertEqual(('This is the first',
'- one\n- two'),
docformatter.split_summary_and_description(
'This is the first\n- one\n- two'))
def test_split_summary_and_description_with_list_of_parameters(self):
self.assertEqual(('This is the first',
'one - one\ntwo - two'),
docformatter.split_summary_and_description(
'This is the first\none - one\ntwo - two'))
def test_split_summary_and_description_with_capital(self):
self.assertEqual(('This is the first\nWashington', ''),
docformatter.split_summary_and_description(
'This is the first\nWashington'))
def test_split_summary_and_description_with_list_on_other_line(self):
self.assertEqual(('Test\n test', ' @blah'),
docformatter.split_summary_and_description('''\
Test
test
@blah
'''))
def test_split_summary_and_description_with_other_symbol(self):
self.assertEqual(('This is the first',
'@ one\n@ two'),
docformatter.split_summary_and_description(
'This is the first\n@ one\n@ two'))
def test_split_summary_and_description_with_colon(self):
self.assertEqual(('This is the first:',
'one\ntwo'),
docformatter.split_summary_and_description(
'This is the first:\none\ntwo'))
def test_split_summary_and_description_with_exclamation(self):
self.assertEqual(('This is the first!',
'one\ntwo'),
docformatter.split_summary_and_description(
'This is the first!\none\ntwo'))
def test_split_summary_and_description_with_question_mark(self):
self.assertEqual(('This is the first?',
'one\ntwo'),
docformatter.split_summary_and_description(
'This is the first?\none\ntwo'))
def test_split_summary_and_description_with_quote(self):
self.assertEqual(('This is the first\n"one".', ''),
docformatter.split_summary_and_description(
'This is the first\n"one".'))
self.assertEqual(("This is the first\n'one'.", ''),
docformatter.split_summary_and_description(
"This is the first\n'one'."))
self.assertEqual(('This is the first\n``one``.', ''),
docformatter.split_summary_and_description(
'This is the first\n``one``.'))
def test_split_summary_and_description_with_late__punctuation(self):
self.assertEqual(
("""\
Try this and this and this and this and this and this and this at
http://example.com/""",
"""
Parameters
----------
email : string"""),
docformatter.split_summary_and_description('''\
Try this and this and this and this and this and this and this at
http://example.com/
Parameters
----------
email : string
'''))
def test_split_summary_and_description_without__punctuation(self):
self.assertEqual(
("""\
Try this and this and this and this and this and this and this at
this other line""",
"""
Parameters
----------
email : string"""),
docformatter.split_summary_and_description('''\
Try this and this and this and this and this and this and this at
this other line
Parameters
----------
email : string
'''))
def test_split_summary_and_description_with_abbreviation(self):
for text in ['Test e.g. now'
'Test i.e. now',
'Test Dr. now',
'Test Mr. now',
'Test Mrs. now',