click is a python package for creating nice commandline interfaces for your applications. I have been playing with click a bit and today pushed this simple roman numeral converter on github.
What I want to do now is to test my click application. I am reading through the documentation, but don't know how to run the tests.
Does anyone have experience with testing click applications?
click.testing.CliRunner
, and then you run the tests just by running those scripts the same as any other Python script. What part of that is confusing? Where are you stuck? – Raddiclick
app andCliRunner
tests, and how you're running them, don't make us guess at what you did and what parts you may or may not understsand. – Raddi