Glossary

Tests built-in Python features, not your own code

these tests verify that Python's `+`, `upper()`, `append()`, and dict indexing work. You should be testing *your* functions, not the language itself.

Learn More

Related Terms