god these tests are the worst

Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2017-09-25 17:47:28 -04:00
parent 6a2e752a5b
commit f48b33071c
-11
View File
@@ -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 = '*'