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

index f421bf7f59b27e2a4cc012f0a2c513f6abd9d1c0..0edd18066813a4b0da56b18576f8f0068e8ae0df 100644 (file)
@@ -361,9 +361,9 @@ style was put forth most strongly by [Kent Beck in
 
 ## A TDD Example
 
-Say you want to write a fib() function which generates values of the
-Fibonacci sequence of given indexes. You would - of course - start by
-writing the test, possibly testing a single value:
+Say you want to write a fib() function which generates values of the [Fibonacci
+sequence](http://en.wikipedia.org/wiki/Fibonacci_number) of given indexes. You
+would - of course - start by writing the test, possibly testing a single value:
 
 ```python
 from nose.tools import assert_equal