Not sure why that test was in the wrong section

This commit is contained in:
Jeff Forcier 2016-05-15 19:19:48 -07:00
parent 8fdb2e1aa5
commit 1591de8c9c
2 changed files with 7 additions and 5 deletions

View file

@ -458,11 +458,6 @@ class organization(Spec):
}
self._expect_releases(entries, expected, skip_initial=True)
def affects_unreleased_buckets_too(self):
# I.e. there is no unreleased_bugfix vs unreleased_feature, only
# Zuul^Wunreleased
skip()
def does_not_affect_releases_after_1_0(self):
# Mixed changelog crossing 1.0 boundary
skip()

View file

@ -218,3 +218,10 @@ class presentation(Spec):
eq_(len(result), 2)
html = str(result[0][0][0])
assert "Next 1.x bugfix release" in html
def unstable_prehistory_active_means_only_one_unreleased_release(self):
app = make_app(unstable_prehistory=True)
entries = (b(1),)
result = self._generate(*entries, app=app, raw=True)
html = str(result[0][0][0])
assert "Next release" in html