From 0d91fd52ffe8a5be9cc4249f21f04cdac9c808e1 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Sun, 27 Nov 2016 20:52:42 +0100 Subject: [PATCH] experiment with a failing test for #134 --- testing/test_mercurial.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/testing/test_mercurial.py b/testing/test_mercurial.py index e2c43565..0788b94c 100644 --- a/testing/test_mercurial.py +++ b/testing/test_mercurial.py @@ -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 \ No newline at end of file