Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit be9c93f

Browse files
committedMar 8, 2022
Remove RED, GREEN, REFACTOR in steps
1 parent 9533884 commit be9c93f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Summary of one-time project setup:
8181

8282
## Project Development Workflow
8383

84-
We will use a Test Driven Development programming workflow to work on this project. Notice the Red-Green-Refactor steps in the workflow steps outlined below.
84+
We will use a Test Driven Development programming workflow to work on this project.
8585

8686
1. When you want to begin work on this project, ensure that your virtual environment is activated:
8787

@@ -99,7 +99,7 @@ $ source venv/bin/activate
9999
- *What is the expected output for the given input?*
100100
- Remove the lines that contain `@pytest.mark.skip()` for the test(s) you want to run.
101101

102-
3. Run the test(s)! (RED)
102+
3. Run the test(s)!
103103
- *See the [Details About How to Run Tests](#details-about-how-to-run-tests) section below for more information on how to run test(s).*
104104

105105
```bash
@@ -117,11 +117,11 @@ $ pytest
117117

118118
7. Re-run the tests.
119119

120-
8. Repeat steps 4-7 until that test passes! (GREEN)
120+
8. Repeat steps 4-7 until that test passes!
121121

122122
9. Repeats steps 3-8 until you have finished all tests in the file.
123123

124-
10. Consider looking for opportunities to improve your code (REFACTOR)
124+
10. Consider looking for opportunities to improve your code.
125125

126126
11. Begin using the test file of the next wave!
127127

0 commit comments

Comments
 (0)
Please sign in to comment.