diff options
Diffstat (limited to 'README.txt')
-rw-r--r-- | README.txt | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -1,3 +1,6 @@ +Installation +============= + To install/deploy this app follow the steps below: 1. Clone this repository. @@ -13,3 +16,23 @@ To install/deploy this app follow the steps below: And you should be all set. +WARNING: django is running in debug mode for this currently, CHANGE it +during deployment + +A sample question +================== + +Here is an example of a good question and tests for it. On the admin +interface after you login, add a new question with the following fields: + + Summary: Fibonnaci + + Question: Write function called "fib" which takes a single integer + argument (say "n") and returns a list of the first "n" fibonacci + numbers. For example fib(3) -> [1, 1, 2]. + + Points: 1 + + Test: + assert fib(3) == [1, 1, 2] + assert fib(6) == [1, 1, 2, 3, 5, 8] |