We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb8aedc commit 5732ef0Copy full SHA for 5732ef0
3_documenting_and_testing/prep_work.md
@@ -10,4 +10,7 @@ Familiarize yourself with these resources for understanding and discussing code
10
11
- Read through [Behavior, Strategy, Implementation](./behavior_strategy_implementation.md)
12
- Read through the [Code Review Checklist](./code_review_checklist.md)
13
-- Study and run the [`/examples`](./examples/)
+- Study and run the [`/examples`](./examples/). Practice using these commands with `fibonacci_list.py` and `tests/test_fibonacci.py`:
14
+ - print the docstring: `$ python -m pydoc path/to/file.py`
15
+ - run the doctests: `$ python -m doctest -v path/to/file.py`
16
+ - run the tests using `$ python -m unittest path/to/tests/test_file.py`
0 commit comments