quizzes/git: Add 'git help config' question
[quizzer.git] / quizzes / monty-python.json
1 {
2         "version": "0.1",
3         "questions": [
4                 {
5                         "class": "ChoiceQuestion",
6                         "prompt": "What is your name?",
7                         "answer": [
8                                 "Sir Lancelot",
9                                 "Sir Robin"
10                                 ],
11                         "help": "This should be easy"
12                 },
13                 {
14                         "prompt": "What is your quest?",
15                         "answer": "To seek the Holy Grail",
16                         "help": "Think like a Pythonista",
17                         "dependencies": [
18                                 "What is your name?"
19                                 ]
20                 },
21                 {
22                         "class": "NormalizedStringQuestion",
23                         "prompt": "What is your favourite color?",
24                         "answer": "blue",
25                         "help": "Channel Sir Lancelot",
26                         "dependencies": [
27                                 "What is your quest?"
28                                 ]
29                 },
30                 {
31                         "prompt": "What is the capital of Assyria?",
32                         "answer": "I don't know that",
33                         "help": "Sir Robin didn't know it either",
34                         "dependencies": [
35                                 "What is your quest?"
36                                 ]
37                 }
38         ]
39 }