Skip to content

Commit

Permalink
experiment with a failing test for pypa#134
Browse files Browse the repository at this point in the history
  • Loading branch information
RonnyPfannschmidt committed Nov 27, 2016
1 parent 9cf2009 commit 0d91fd5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions testing/test_mercurial.py
Expand Up @@ -101,3 +101,17 @@ def test_version_in_merge(wd):
wd.commit_testfile()
wd('hg merge --tool :merge')
assert wd.version is not None


@pytest.mark.issue("#134")
def test_version_with_bookmarks(wd):
wd.commit_testfile()
wd("hg bookmark test")

wd("hg bookmark test/master")
wd("hg up tip")
wd("hg tag v0.1")

print wd.version
assert 0
assert wd.version

0 comments on commit 0d91fd5

Please sign in to comment.