summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrikant2012-01-30 11:23:59 +0530
committerSrikant2012-01-30 11:23:59 +0530
commit739590e2ca61ba47a553f9ce23c149003520faa6 (patch)
treedb590651ca8e5e1de3f84b732e4216977da24bce
parentfe841fd9e4172af75ce583348c3fe1c0a8a9d1de (diff)
downloadsdes-stscripts-739590e2ca61ba47a553f9ce23c149003520faa6.tar.gz
sdes-stscripts-739590e2ca61ba47a553f9ce23c149003520faa6.tar.bz2
sdes-stscripts-739590e2ca61ba47a553f9ce23c149003520faa6.zip
except nose test
-rwxr-xr-xTDD/using_python_framework_for_tdd/tdd2_script.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/TDD/using_python_framework_for_tdd/tdd2_script.rst b/TDD/using_python_framework_for_tdd/tdd2_script.rst
index ccaa0ec..add7e7e 100755
--- a/TDD/using_python_framework_for_tdd/tdd2_script.rst
+++ b/TDD/using_python_framework_for_tdd/tdd2_script.rst
@@ -162,19 +162,19 @@ tests into collections and improves reporting.
To run unittest on our fibonacci function let us create a
new file ``test_fibonacci.py``. This new file will host the
-test code. To begin unittesting let us subclass
- the TestCase class in unittest. We need fibonacci.py
- and fibonacci_testcases.py files too.
+test code.
+To begin unittesting let us subclass the TestCase class
+in unittest. We need fibonacci.py and fibonacci_testcases.py
+files too.
.. L12
{{{ Show slide13, unittesting fibonacci.py }}}
-
.. R13
This brings us to the end of the tutorial.In this tutorial,
- we have learnt to,
+we have learnt to,
1. Undestand the basic steps involved in Test driven development.
#. Design a Test driven approach for a given ``fibonacci`` function.