From: gidden Date: Sun, 21 Apr 2013 19:03:00 +0000 (-0500) Subject: added a link for the fib function X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bfde36c1299613c61572ac4d052a1e2ca1a644dd;p=swc-testing-nose.git added a link for the fib function --- diff --git a/python/testing/Readme.md b/python/testing/Readme.md index f421bf7..0edd180 100644 --- a/python/testing/Readme.md +++ b/python/testing/Readme.md @@ -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