Skip to content

Commit 5d868bc

Browse files
committed
stuff
1 parent 4b46053 commit 5d868bc

2 files changed

Lines changed: 8 additions & 64 deletions

File tree

14_twelve_days/turtle.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@ This is the code repository for the Manning Publications book, _Tiny Python Proj
44

55
https://www.manning.com/books/tiny-python-projects
66

7-
There is a directory for each chapter of the book which describes in detail the skills you need to solve the coding challenges.
7+
There is a directory for each chapter of the book.
88
Each directory contains a `test.py` program you can use with `pytest` to check that you have written the program correctly.
9-
The testing step is integral to writing.
9+
I have included a short README to describe each exercise.
10+
If you have problems writing code (or if you would like to support this project!), the book contains details about the skills you need.
11+
12+
The testing step is integral to writing and solving these challenges as well as to the methodology of the book.
13+
I advocate a "test-driven development" mentality where we write tests _before_ we write code.
14+
The tests should define what it means for a program to be correct, and then we write programs to satisfy the tests.
15+
In this project, I've written all the tests for you, but I also encourage you to write your own functions and tests.
1016
You should run the test suite after every change to your program to ensure you are making progress!
1117

1218
# Forking GitHub repo

0 commit comments

Comments
 (0)