From c542806396caf619e4bdcc929d9b70e5b7e54d30 Mon Sep 17 00:00:00 2001 From: Ed Singleton Date: Fri, 3 Sep 2010 10:07:17 +0100 Subject: [PATCH] Whitespace normalisation between funcs in test_pytest_nose.py --HG-- branch : trunk --- testing/plugin/test_pytest_nose.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/testing/plugin/test_pytest_nose.py b/testing/plugin/test_pytest_nose.py index 6ce20d861..56867c631 100644 --- a/testing/plugin/test_pytest_nose.py +++ b/testing/plugin/test_pytest_nose.py @@ -1,6 +1,7 @@ import py py.test.importorskip("nose") + def test_nose_setup(testdir): p = testdir.makepyfile(""" l = [] @@ -17,6 +18,7 @@ def test_nose_setup(testdir): "*2 passed*" ]) + def test_nose_setup_func(testdir): p = testdir.makepyfile(""" l = [] @@ -43,6 +45,7 @@ def test_nose_setup_func(testdir): "*2 passed*" ]) + def test_nose_test_generator_fixtures(testdir): p = testdir.makepyfile(""" # taken from nose-0.11.1 unit_tests/test_generator_fixtures.py @@ -111,7 +114,6 @@ def test_nose_test_generator_fixtures(testdir): ]) - def test_module_level_setup(testdir): testdir.makepyfile(""" from nose.tools import with_setup @@ -142,6 +144,7 @@ def test_module_level_setup(testdir): "*2 passed*", ]) + def test_nose_style_setup_teardown(testdir): testdir.makepyfile(""" l = [] @@ -161,4 +164,3 @@ def test_nose_style_setup_teardown(testdir): result.stdout.fnmatch_lines([ "*2 passed*", ]) -