14
0

- Normalize metadata directory name.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-delegator.py?expand=0&rev=11
This commit is contained in:
2025-03-27 04:04:10 +00:00
committed by Git OBS Bridge
commit 85bc81be0b
7 changed files with 284 additions and 0 deletions

6
test_chain.py Normal file
View File

@@ -0,0 +1,6 @@
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'