Skip to content

Commit

Permalink
Add test capturing failed expectation despite #889. Ref #1062.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Jul 27, 2017
1 parent 07a7b06 commit d9f34f0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setuptools/tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,15 @@ def test_classifiers(self, tmpdir):
with get_dist(tmpdir) as dist:
assert set(dist.metadata.classifiers) == expected

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 d9f34f0

Please sign in to comment.