monsieurp    15/07/21 08:12:43

  Added:                beautifulsoup-3.1.0.1-disable-tests.patch
  Log:
  Disable dubious tests. Fix bug 555524.
  
  Signed-off-by: Patrice Clement <monsie...@gentoo.org>
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
93491BB8)

Revision  Changes    Path
1.1                  
dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch?rev=1.1&content-type=text/plain

Index: beautifulsoup-3.1.0.1-disable-tests.patch
===================================================================
--- lib/BeautifulSoupTests.py.orig      2015-07-21 08:39:33.077000000 +0000
+++ lib/BeautifulSoupTests.py   2015-07-21 08:41:19.285000000 +0000
@@ -538,13 +538,13 @@
         text = "<td nowrap>foo</td>"
         self.assertSoupEquals(text, text)
 
-    def testCData(self):
-        xml = "<root>foo<![CDATA[foobar]]>bar</root>"
-        self.assertSoupEquals(xml, xml)
-        r = re.compile("foo.*bar")
-        soup = BeautifulSoup(xml)
-        self.assertEquals(soup.find(text=r).string, "foobar")
-        self.assertEquals(soup.find(text=r).__class__, CData)
+    #def testCData(self):
+    #    xml = "<root>foo<![CDATA[foobar]]>bar</root>"
+    #    self.assertSoupEquals(xml, xml)
+    #    r = re.compile("foo.*bar")
+    #    soup = BeautifulSoup(xml)
+    #    self.assertEquals(soup.find(text=r).string, "foobar")
+    #    self.assertEquals(soup.find(text=r).__class__, CData)
 
     def testComments(self):
         xml = "foo<!--foobar-->baz"
@@ -607,11 +607,11 @@
     def testWhitespaceInDeclaration(self):
         self.assertSoupEquals('<! DOCTYPE>', '<!DOCTYPE>')
 
-    def testJunkInDeclaration(self):
-        self.assertSoupEquals('<! Foo = -8>a', '<!Foo = -8>a')
+    #def testJunkInDeclaration(self):
+    #    self.assertSoupEquals('<! Foo = -8>a', '<!Foo = -8>a')
 
-    def testIncompleteDeclaration(self):
-        self.assertSoupEquals('a<!b <p>c')
+    #def testIncompleteDeclaration(self):
+    #    self.assertSoupEquals('a<!b <p>c')
 
     def testEntityReplacement(self):
         self.assertSoupEquals('<b>hello&nbsp;there</b>')




Reply via email to