Given I have my tests in a separate file to my application code, is there any way to test unexported (private) procs from within my test file?
i.e. proc private(x: int): int = without doing proc private*(x: int): int = Is there any tip/trick I'm missing, what is the standard practice for testing private functions?