forked from pool/python-delegator.py
a5dfcb452a
- Initial spec for v0.1.1, using exclude-eof-from-result.patch OBS-URL: https://build.opensuse.org/request/show/682891 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-delegator.py?expand=0&rev=1
7 lines
170 B
Python
7 lines
170 B
Python
import pytest
|
|
import delegator
|
|
|
|
def test_chain():
|
|
c = delegator.chain("seq 4 | awk '{ print $0 \" test\"; }'")
|
|
assert c.out == '1 test\n2 test\n3 test\n4 test\n'
|