push
circleci
5 of 8 new or added lines in 2 files covered. (62.5%)
1048 existing lines in 72 files now uncovered.16939 of 34038 relevant lines covered (49.76%)
1.25 hits per line
1 |
# -*- encoding: utf-8 -*-
|
|
UNCOV
2
|
try:
|
× |
UNCOV
3
|
from django.core.urlresolvers import reverse |
× |
UNCOV
4
|
except ImportError: |
× |
UNCOV
5
|
from django.urls import reverse |
× |
6 |
|
|
UNCOV
7
|
from django.test import TestCase |
× |
UNCOV
8
|
from django.test.client import Client |
× |
9 |
|
|
10 |
|
|
UNCOV
11
|
class Test(TestCase): |
× |
UNCOV
12
|
def setUp(self): |
× |
13 |
pass
|
× |
14 |
|
|
UNCOV
15
|
def test_raport_autorow(self): |
× |
16 |
c = Client() |
× |
17 |
res = c.get(reverse("bpp:raport_autorow_formularz"))
|
× |
18 |
self.assertEquals(res.status_code, 200) |
× |