Passed
Push — master ( dac537...326ab7 )
by Alexander
02:16
created

tcms.telemetry.urls   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
from django.conf.urls import url
2
3
from tcms.telemetry.views import TestingBreakdownView
4
5
urlpatterns = [
6
    url(r'^testing/breakdown/$', TestingBreakdownView.as_view(), name='testing-breakdown')
7
]
8