You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,11 @@
2
2
3
3
# Unit Tests Practice
4
4
5
-
#### This repo explores a wide range of testing techniques — mocking, fixtures, test-class inheritance, a simulated HTTP server and continuous integration — using simple multiple-choice quizzes stored as JSON. It also compares the automated tests through unittest and pytest, and was also my first steps with Markdown documentation.
5
+
This repo explores a wide range of testing techniques — mocking, fixtures, test-class inheritance, a simulated HTTP server and continuous integration — using simple multiple-choice quizzes stored as JSON, and compares the automated tests through unittest and pytest.
6
6
7
-
## Overview
7
+
It was also my first steps with Markdown documentation.
8
+
9
+
### Overview
8
10
9
11
| Program | Role |
10
12
|---|---|
@@ -16,7 +18,7 @@ The test suite is the heart of the project: it stacks several techniques on a si
16
18
17
19
---
18
20
19
-
## Installation
21
+
###Installation
20
22
21
23
```bash
22
24
python -m venv venv
@@ -25,29 +27,29 @@ pip install -r requirements.txt # to use questionnaire.py only
25
27
pip install -r requirements-dev.txt # to use questionnaire_unit_tests.py
26
28
```
27
29
28
-
##questionnaire_import.py : Import and convert online quizzes into json_questionnaires
30
+
###Import and convert online quizzes into json_questionnaires
29
31
>python3 ./questionnaire_import.py
30
32
31
33
More info : [questionnaire_import.md](./questionnaire_import.md)
32
34
33
35
---
34
36
35
-
##questionnaire.py : Displays the quiz in argument and counts the number of good answers
37
+
### Displays the quiz in argument and counts the number of good answers
0 commit comments