Source code for mr_freeze.ci_test
"""
Contains a dumb little routine to test that the system works
"""
[docs]def add_one(number):
"""
Adds one to a number
:param number: The number to add 1 to
:return: The result of adding 1 to that number
"""
return number + 1