Completed
Pull Request — master (#6)
by Steve
02:52 queued 43s
created

test.conftest.container()   A

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nop 0
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