Completed
Pull Request — master (#6)
by Steve
02:04
created

test.conftest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Function

Rating   Name   Duplication   Size   Complexity  
A container() 0 4 1
1
import pytest
2
3
from lagom import Container
4
5
6
@pytest.fixture(scope="function")
7
def container():
8
    c = Container()
9
    return c
10