added notes to the readme
authorgidden <matthew.gidden@gmail.com>
Sun, 21 Apr 2013 19:24:56 +0000 (14:24 -0500)
committerW. Trevor King <wking@tremily.us>
Fri, 1 Nov 2013 16:40:00 +0000 (09:40 -0700)
python/testing/Readme.md

index 1f53ea79e6a2776e246ad4f9d0e76f35873c0249..2c50dc1114b5a6eeb6d8fe3a1a8f945fca9e400c 100644 (file)
@@ -516,6 +516,10 @@ def fib(n):
 
 Can you think of other tests to make for the fibonacci function? I promise there 
 are at least two. 
+<!---
+       1. How about fib(string) or fib(array)?
+       2. How about fib(None)?
+--->
 
 Implement one new test in test_fib.py, run nosetests, and if it fails, implement 
 a more robust function for that case.