Passed
Push — main ( 81ca09...979ada )
by Douglas
01:38
created

tests.pocketutils.tools.test_sys_tools   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A TestSysTools.test_add_signals() 0 2 1
1
import pytest
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
introduced by
Unable to import 'pytest'
Loading history...
2
3
from pocketutils.tools.sys_tools import SystemTools
0 ignored issues
show
Unused Code introduced by
Unused SystemTools imported from pocketutils.tools.sys_tools
Loading history...
4
5
6
class TestSysTools:
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
7
    def test_add_signals(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
8
        pass
9
10
11
if __name__ == "__main__":
12
    pytest.main()
13