I'm working on unit testing an app I have, but am not using any functions in the app. It only uses command line arguments to know what to do. What would a generic setup be for importing unittest? I'm fairly new to Python and trying to get a hang of it here.
Example, my code could have commands like "app.py configure alpha", "app.py configure beta", "app.py info alpha" - but I'm not entirely sure how this gets referenced in a unit tester.