summaryrefslogtreecommitdiff
path: root/TDD/using_python_framework_for_tdd
diff options
context:
space:
mode:
authorSrikant2012-01-30 16:42:53 +0530
committerSrikant2012-01-30 16:42:53 +0530
commitc2cb335fa1071861925745fb830b0f688e80eca6 (patch)
tree269d62605101239b8053be4140dda8f228dc251a /TDD/using_python_framework_for_tdd
parenta1f0b0636746e3df0a67bd0823b88113c9a28c9a (diff)
downloadsdes-stscripts-c2cb335fa1071861925745fb830b0f688e80eca6.tar.gz
sdes-stscripts-c2cb335fa1071861925745fb830b0f688e80eca6.tar.bz2
sdes-stscripts-c2cb335fa1071861925745fb830b0f688e80eca6.zip
fixed few typos
Diffstat (limited to 'TDD/using_python_framework_for_tdd')
-rwxr-xr-xTDD/using_python_framework_for_tdd/tdd2_script.rst14
1 files changed, 1 insertions, 13 deletions
diff --git a/TDD/using_python_framework_for_tdd/tdd2_script.rst b/TDD/using_python_framework_for_tdd/tdd2_script.rst
index bd5090b..4343b2a 100755
--- a/TDD/using_python_framework_for_tdd/tdd2_script.rst
+++ b/TDD/using_python_framework_for_tdd/tdd2_script.rst
@@ -160,20 +160,13 @@ tests into collections and improves reporting.
.. R12
-<<<<<<< HEAD
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.
-=======
-To run unittest on our fibonacci function, let us create a
-new file ``test_fibonacci.py``. This new file hosts the
-test code. To begin unittesting, let us subclass
- the TestCase class in unittest. We need fibonacci.py
- and fibonacci_testcases.py files too.
->>>>>>> 9c943d7375af3ed25c2c1d32f42bdf359f13d115
+
.. L12
@@ -182,7 +175,6 @@ test code. To begin unittesting, let us subclass
.. R13
-<<<<<<< HEAD
The function ``setUp`` will read all the test data and store
it in a list.The next function ``test_fibonacci`` contains
test code. The last function deletes the data from test_cases
@@ -197,10 +189,6 @@ list and closes ``fibonacci_testcases.dat`` file.
This brings us to the end of the tutorial.In this tutorial,
we have learnt to,
-=======
-This brings us to the end of the tutorial. In this tutorial,
- we have learnt to,
->>>>>>> 9c943d7375af3ed25c2c1d32f42bdf359f13d115
1. Understand the basic steps involved in Test driven development.
#. Design a Test driven approach for a given ``fibonacci`` function.