A dummy child function that we will "hotfix" in tests

dummy_child_func(x)

Arguments

x

Input value

Value

A character string with child output

Examples

# This function is called by dummy_parent_func
# It serves as an example of a function that can be hotpatched
result <- dummy_child_func("example")
print(result)
#> [1] "I am the BROKEN child. Input: example"