From f48b33071cf071682e538d3b2e3e9757f559e20c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 25 Sep 2017 17:47:28 -0400 Subject: [PATCH] god these tests are the worst Signed-off-by: Kenneth Reitz --- tests/test_utils.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index aa82c7db..8eed29f7 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -10,17 +10,6 @@ class TestUtils: """Test utility functions in pipenv""" - def test_format_toml(self): - """Verify that two return characters are used between each section""" - data = ('[[source]]\nurl = "https://pypi.org/simple"\n[dev-packages]\n' - 'pytest="*"\nsphinx = "*"\n[packages]\nclick ="*"\ncrayons = "*"') - - expected = ('[[source]]\nurl = "https://pypi.org/simple"\n\n' - '[dev-packages]\npytest="*"\nsphinx = "*"\n\n' - '[packages]\nclick ="*"\ncrayons = "*"') - - assert pipenv.utils.format_toml(data) == expected - def test_convert_deps_to_pip(self): # requests = '*'