Remove debug print

This commit is contained in:
Simeon Warner 2016-03-07 14:44:42 -05:00
parent e93870e1cb
commit dcb44bcf90

View File

@ -22,7 +22,7 @@ else:
class TestListBase(unittest.TestCase):
def test_05_len_count(self):
def test_01_len_count(self):
# count sets explicit number of resources, len(resources) not used
lb = ListBase()
self.assertEqual( len(lb), 0 )
@ -31,17 +31,16 @@ class TestListBase(unittest.TestCase):
lb = ListBase( count=100 )
self.assertEqual( len(lb), 100 )
def test_08_print(self):
def test_02_print(self):
lb = ListBase()
lb.add( Resource(uri='a',lastmod='2001-01-01',length=1234) )
lb.add( Resource(uri='b',lastmod='2002-02-02',length=56789) )
lb.add( Resource(uri='c',lastmod='2003-03-03',length=0) )
lb.md['from']=None #avoid now being added
print(lb)
x = lb.as_xml()
self.assertEqual( x, '<?xml version=\'1.0\' encoding=\'UTF-8\'?>\n<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:rs="http://www.openarchives.org/rs/terms/"><rs:md capability="unknown" /><url><loc>a</loc><lastmod>2001-01-01T00:00:00Z</lastmod><rs:md length="1234" /></url><url><loc>b</loc><lastmod>2002-02-02T00:00:00Z</lastmod><rs:md length="56789" /></url><url><loc>c</loc><lastmod>2003-03-03T00:00:00Z</lastmod><rs:md length="0" /></url></urlset>' )
def test_11_parse_2(self):
def test_03_parse(self):
xml = '<?xml version=\'1.0\' encoding=\'UTF-8\'?>\n\
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:rs="http://www.openarchives.org/rs/terms/">\
<rs:md capability="unknown" from="2013-02-12T14:09:00Z" />\