Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 348 Bytes

File metadata and controls

13 lines (10 loc) · 348 Bytes

0x07. Python - Test-driven development

A project on unit tests using Python

Procedure followed to write tests:

  • Write test that'll fail
  • Then write the program code
  • Then test your program with the failing test to see if it will actually fail
  • Then write correct tests
  • Then test your code
  • Then write more codes
  • Then write more tests