Completed
Pull Request — master (#80)
by
unknown
33s
created

MyTest   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 2
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
from __future__ import print_function
2
from hamcrest import *
3
4
try:
5
    class MyTest(object):
6
        pass
7
except TypeError:
8
    print('Object class defined at {0}'.format(getattr(object, '__file__', 'NOWHERE')))
9
    raise
10