Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 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 |