A test that verifies documenting a namespace of functions.

my_namespace.assert_non_empty

Asserts the two given lists are not empty.

PARAMETERS

NameDescriptionDefault Value
some_listThe first listnone
other_listThe second listnone

my_namespace.min

Returns the minimum of given elements.

PARAMETERS

NameDescriptionDefault Value
integersA list of integers. Must not be empty.none

RETURNS

The minimum integer in the given list.

my_namespace.join_strings

Joins the given strings with a delimiter.

PARAMETERS

NameDescriptionDefault Value
stringsA list of strings to join.none
delimiterThe delimiter to use", "

RETURNS

The joined string.