Completed
Push — main ( fa5ff0...64aa50 )
by Jochen
03:18
created

test_orga_team_view.test_orga_team_view()   A

Complexity

Conditions 2

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 4
nop 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
"""
2
:Copyright: 2006-2020 Jochen Kupperschmidt
3
:License: Modified BSD, see LICENSE for details.
4
"""
5
6
from tests.helpers import http_client
7
8
9
def test_orga_team_view(site_app, site):
10
    with http_client(site_app) as client:
11
        response = client.get('/orgas/')
12
13
    assert response.status_code == 200
14