From c2cb335fa1071861925745fb830b0f688e80eca6 Mon Sep 17 00:00:00 2001 From: Srikant Date: Mon, 30 Jan 2012 16:42:53 +0530 Subject: fixed few typos --- TDD/using_python_framework_for_tdd/tdd2_script.rst | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'TDD/using_python_framework_for_tdd') 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. -- cgit