test_resources.injectables.red   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A Red.name() 0 2 1
1
from jacked import injectable
2
from test_resources.color import Color
3
4
5
@injectable()
6
class Red(Color):
7
    def name(self):
8
        return 'RED'
9