Completed
Push — master ( b9d07b...e5e83c )
by Mateusz
01:25
created

test_initializing()   A

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