mirror of
https://github.com/vale981/releases
synced 2025-03-04 17:21:43 -05:00
Not sure why that test was in the wrong section
This commit is contained in:
parent
8fdb2e1aa5
commit
1591de8c9c
2 changed files with 7 additions and 5 deletions
|
@ -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()
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue