Removed one more utils reference in the README and fixed directory name

Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
This commit is contained in:
Carlo Costino
2024-05-16 10:41:49 -04:00
parent 99edc88197
commit ac4ebacfeb
40 changed files with 0 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
from notifications_utils.take import Take
def _uppercase(value):
return value.upper()
def _append(value, to_append):
return value + to_append
def _prepend_with_service_name(value, service_name=None):
return "{}: {}".format(service_name, value)
def test_take():
assert "Service name: HELLO WORLD!" == Take("hello world").then(_uppercase).then(
_append, "!"
).then(_prepend_with_service_name, service_name="Service name")