test_initializing()   A
last analyzed

Complexity

Conditions 3

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
c 1
b 0
f 0
dl 0
loc 4
rs 10
1
import grimreaper
2
3
4
def test_initializing():
5
    gr = grimreaper.GrimReaper(socket_path='foo', process_timeout=3)
6
    assert gr._path == 'foo'
7
    assert gr._process_timeout == 3
8