Esempio n. 1
0
def test_notify_not():
    intf = Systemd()
    intf.notify('foo')
    intf.notify(b'foo')
Esempio n. 2
0
def test_available(mock_sock):
    intf = Systemd()
    intf.notify('foo')
    assert mock_sock.recv(64) == b'foo'
    intf.notify(b'bar')
    assert mock_sock.recv(64) == b'bar'