summaryrefslogtreecommitdiff
path: root/bs4/testing.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2011-03-06 19:41:48 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2011-03-06 19:41:48 -0500
commit85959841f88fb750b20bea48b4df904286e4fca6 (patch)
treee796cf9045d94be991f6611188c41607abf342a1 /bs4/testing.py
parentb01f9312a13198d249060dac34ab12629285cdb2 (diff)
parent32050a613a3eff5f53c6395ea365159226351946 (diff)
A big patch from Aaron that brings in features from 3.0.8 and makes the code more PEP-8 compliant.
Diffstat (limited to 'bs4/testing.py')
-rw-r--r--bs4/testing.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/bs4/testing.py b/bs4/testing.py
index 9d9c26a..91c623a 100644
--- a/bs4/testing.py
+++ b/bs4/testing.py
@@ -5,6 +5,7 @@ from bs4 import BeautifulSoup
from bs4.element import Comment, SoupStrainer
from bs4.builder import LXMLTreeBuilder
+
class SoupTest(unittest.TestCase):
@property
@@ -30,8 +31,3 @@ class SoupTest(unittest.TestCase):
compare_parsed_to = to_parse
self.assertEquals(obj.decode(), self.document_for(compare_parsed_to))
-
-
-
-
-