Passed
Push — master ( c539de...a647e0 )
by sosei
01:45 queued 25s
created

doctestmod()   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nop 0
1
from doctest import testmod
2
3
__all__ = ['doctestmod']
4
5
def doctestmod():
6
    from multivalued_dict_package import multivalued_dict_module
7
    testmod(multivalued_dict_module)
8