Hi Kent and Lie,

First, thanks to you both for the help. I reworked the tests and then
the main code according to your suggestions (I really was muddling
these TDD concepts!).

The reworked code and tests are below. In the tests, I hard-coded the
source data and the expected results; in the main program code, I
eliminated the FileCleaner class and converted its methods to
stand-alone functions. I'm planning to group them into a single,
larger "process" function as you all suggested.

Meantime, I'd be grateful if you could critique whether I've properly
followed your advice. And of course, feel free to suggest other tests
that might be appropriate. For instance, would it make sense to test
convertEmDashes for non-unicode input?

Thanks again!
Serdar

#### test_cleaner.py ####
from cleaner import convertEmDashes, splitLines

class TestCleanerMethods(unittest.TestCase):
    def test_convertEmDashes(self):
        """convertEmDashes to minus signs"""
        srce = u"""This    line   has an em\u2014dash.\nSo   does this
 \u2014.\n"""
        expected = u"""This    line   has an em-dash.\nSo   does this  -.\n"""
        result = convertEmDashes(srce)
        self.assertEqual(result, expected)

    def test_splitLines(self):
        """splitLines should create a list of cleaned lines"""
        srce = u"""This    line   has an em\u2014dash.\nSo   does this
 \u2014.\n"""
        expected = [u'This    line   has an em\u2014dash.', u'So
does this  \u2014.']
        result = splitLines(srce)
        self.assertEqual(result, expected)


#### cleaner.py ####
def convertEmDashes(datastring):
    """Convert unicode emdashes to minus signs"""
    datastring = datastring.replace(u'\u2014','-')
    return datastring

def splitLines(datastring):
    """Generate list of cleaned lines"""
    data = [x.strip() for x in datastring.strip().split('\n') if x.strip()]
    return data
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to