Updated Writing Tests (markdown)

Joscha Götzer 2018-04-06 15:22:35 +02:00
parent ed2dc82013
commit ec68834462

@ -1,6 +1,6 @@
In case you want to practice [test-driven development](https://en.wikipedia.org/wiki/Test-driven_development), or ensure your bot still works after consecutive changes ([regression bugs](https://en.wikipedia.org/wiki/Software_regression) are rather common for chatbots), you should write test cases.
**This page needs contribution! For now, see `test_updater.py` as a reference.**
**This page needs contribution! For now, see [test_updater.py](https://github.com/python-telegram-bot/python-telegram-bot/blob/master/tests/test_updater.py) as a reference.**
## Unit Tests
Unit tests are performed on a logically encapsulated component of the system. The definition of unit tests in contrast to integration tests is that they have no external dependencies.