mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
23 lines
691 B
Python
23 lines
691 B
Python
from moulinette.utils.text import search, searchf, prependlines, random_ascii
|
|
|
|
|
|
def test_search():
|
|
assert search("a", "a a a") == ["a", "a", "a"]
|
|
assert search("a", "a a a", count=2) == ["a", "a"]
|
|
assert search("a", "a a a", count=-1) == "a"
|
|
assert not search("a", "c c d")
|
|
|
|
|
|
def test_searchf(test_file):
|
|
assert searchf("bar", str(test_file)) == ["bar"]
|
|
assert not searchf("baz", str(test_file))
|
|
|
|
|
|
def test_prependlines():
|
|
assert prependlines("abc\nedf\nghi", "XXX") == "XXXabc\nXXXedf\nXXXghi"
|
|
assert prependlines("", "XXX") == "XXX"
|
|
|
|
|
|
def test_random_ascii():
|
|
assert isinstance(random_ascii(length=2), str)
|
|
assert len(random_ascii(length=10)) == 10
|