grim/pyscovery

Fixed some formatting stuff

2013-03-29, Gary Kramlich
9c63414f2d53
Parents 9a543fce518d
Children 6540a52cf4e6
Fixed some formatting stuff
--- a/tests/tests.py Fri Mar 29 01:29:49 2013 -0500
+++ b/tests/tests.py Fri Mar 29 01:37:54 2013 -0500
@@ -157,7 +157,8 @@
class Test: # pylint:disable-msg=R0903,W0232
""" old style class """
pass
-
+
+
pyplugin.find(Test)
@@ -170,13 +171,15 @@
class Test(object): # pylint:disable-msg=R0903
""" new style class """
pass
-
+
+
pyplugin.find(Test)
class TestModule(unittest.TestCase): # pylint:disable-msg=R0904
""" Tests the discovery method of pyplugin """
+
def setUp(self): # pylint:disable-msg=C0103
pyplugin.clear_modules()
@@ -203,6 +206,7 @@
class TestPackage(unittest.TestCase): # pylint:disable-msg=R0904
""" Tests the find method of pyplugin on a package """
+
def setUp(self): # pylint:disable-msg=C0103
pyplugin.clear_modules()