summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch')
-rw-r--r--dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch b/dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch
new file mode 100644
index 000000000000..c97cd76ee314
--- /dev/null
+++ b/dev-python/beautifulsoup/files/beautifulsoup-3.1.0.1-disable-tests.patch
@@ -0,0 +1,39 @@
+--- 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>')