~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Lib/test/test_csv.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-03-11 13:30:19 UTC
  • mto: (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: james.westby@ubuntu.com-20100311133019-sblbooa3uqrkoe70
Tags: upstream-2.6.5~rc2
ImportĀ upstreamĀ versionĀ 2.6.5~rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
531
531
    def test_null(self):
532
532
        self.writerAssertEqual([], '')
533
533
 
534
 
    def test_single(self):
 
534
    def test_single_writer(self):
535
535
        self.writerAssertEqual([['abc']], 'abc\r\n')
536
536
 
537
 
    def test_simple(self):
 
537
    def test_simple_writer(self):
538
538
        self.writerAssertEqual([[1, 2, 'abc', 3, 4]], '1,2,abc,3,4\r\n')
539
539
 
540
540
    def test_quotes(self):