Skip to content

Commit

Permalink
add test for pypa#889
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit-pierre committed Jun 15, 2017
1 parent e014e36 commit 098090b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setuptools/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,16 @@ def test_classifiers(self, tmpdir):
with get_dist(tmpdir) as dist:
assert set(dist.metadata.classifiers) == expected

@pytest.mark.xfail
def test_no_interpolation(self, tmpdir):
fake_env(
tmpdir,
'[metadata]\n'
'description = %(message)s\n'
)
with get_dist(tmpdir) as dist:
assert dist.metadata.description == '%(message)s'


class TestOptions:

Expand Down

0 comments on commit 098090b

Please sign in to comment.