pep8: fix empty line counts

top level: 2, else 1

I also advice to not put "pass" into empty classes, but rather a docstring instead of "pass".
This commit is contained in:
Thomas Waldmann 2014-11-18 18:29:32 +01:00
parent 5deb3f9e0f
commit 179eefae29
16 changed files with 74 additions and 15 deletions

View file

@ -21,11 +21,13 @@ from nose import with_setup
import test_helpers
def test_get_platform_on_tails():
"""get_platform() returns 'Tails' when hostname is 'amnesia'"""
helpers.platform.uname = lambda: ('Linux', 'amnesia', '3.14-1-amd64', '#1 SMP Debian 3.14.4-1 (2014-05-13)', 'x86_64', '')
assert helpers.get_platform() == 'Tails'
def test_get_platform_returns_platform_system():
"""get_platform() returns platform.system() when ONIONSHARE_PLATFORM is not defined"""
helpers.platform.system = lambda: 'Sega Saturn'